#ensNotifyBanner {
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  opacity: 1 !important;
  width: 100%;
  border-radius: 10px;
  padding: 15px 15px 10px !important;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial;
  position: fixed !important;
  bottom: 1px;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ensBannerContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#ensBannerDescription {
  flex: 4;
  font-size: 1em;
  line-height: 1.4;
}

.ensButtons {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 998px) {
  #ensNotifyBanner {
    width: 100%;
    max-width: none;
    padding: 15px 15px 10px;
    bottom: 1px;
    font-size: 16px;
    position: fixed !important;
  }

  .ensBannerContent {
    flex-direction: column;
    align-items: flex-start;
  }

.ensButtons {
  clear: both;
  float: right;
  margin-top: 5px;
  width: 100%;
  text-align: center !important;
  margin-bottom: 5px;
}

  .ensButtons button {
    width: 100%;
    margin: 10px 0 0 0;
  }
}


#ensAcceptAll {
  background-color: #014a91 !important; /* Blue background */
  color: #ffffff;            /* White text */
  border: none;
  font-weight: 500 !important;
}

#ensOpenModal {
  background-color: #ffffff !important; /* White background */
  color: #000000;            /* Black text */
  border: 1px solid #ccc;
  font-weight: 500 !important;
}


#ensCancel {
  background-color: #ffffff !important; /* White background */
  color: #000000;            /* Black text */
  border: 1px solid #ccc;
  font-weight: 500 !important;
}

#ensRejectAll {
  background-color: #ffffff !important; /* White background */
  color: #000000;            /* Black text */
  border: 1px solid #ccc;
  font-weight: 500 !important;
}



.ensButtons {
  clear: both;
  float: right;
  margin-top: 5px;
  width: 100%;
  text-align: right;
  margin-bottom: 10px;
}

.ensButtons button {
  display: inline-block;
  position: relative;
  width: 135px;
  height: 45px;
  border-radius: 2px;
  font-size: 0.9em;
  background-color: #fff;
  color: #2229de;
  margin-left: 20px;
  text-align: center;
  cursor: pointer;
}

.ensButtons button:active {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  transition-delay: 0s;
}

.ensClear {
  clear: both;
}


