#ea-notification-container {
  position: fixed;
  top: 12%;
  right: 20px;
  z-index: 9999;
}

#ea-notification-toggle {
  background: #F4B400;
  color: white;
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

#ea-notification-toggle:hover {
  background: #db9e00;
}

#ea-notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  text-align: center;
}

#ea-notification-box {
  background: white;
  border: 1px solid #ddd;
  padding: 12px;
  width: 280px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: 10px;
}

#ea-notification-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#ea-notification-box li {
  margin-bottom: 14px;
}

.ea-notification-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.ea-notification-desc {
  font-size: 14px;
  color: #555;
}

@media only screen and (max-width: 600px) {
#ea-notification-container {
    bottom: 8% !important;
    top: auto;
}
}