#ensNotifyBanner {
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  opacity: 1 !important;
  width: 80%;
  border-radius: 10px;
  padding: 120px;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial;
  position: fixed;
  top: 100px;
  bottom: auto !important; 
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#ensAcceptAll {
  background-color: #ffffff !important; /* White background */
  color: #000000;            /* Black text */
  border: 1px solid #ccc;
  font-weight: 500 !important;
}

#ensOpenModal {
  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: 20px;
}

.ensButtons button {
  display: inline-block;
  position: relative;
  width: 135px;
  height: 45px;
  border-radius: 2px;
  font-size: 0.9em;
  background-color: #fff;
  color: #000;
  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;
}


/* Responsive adjustments for smaller screens */

@media (max-width: 768px) {
  #ensNotifyBanner {
    width: 70%;
    max-width: none;
    padding: 20px 15px;
    top: 20px;
    font-size: 16px;
  }

  .ensButtons button {
    width: 100%;
    margin: 10px 0 0 0;
  }
}

@media (max-width:580px) { 
	#ensNotifyBanner {
		width: 90% !important;
		left: 5% !important;
       }
}