.eupopup-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e1e;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  padding: 20px 24px;
  z-index: 9999999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: none;
  animation: slideInUp 0.3s ease-out;
}

.eupopup-head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.eupopup-body {
  margin-bottom: 20px;
}

.eupopup-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eupopup-button {
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.eupopup-button_1 {
  background-color: #4caf50;
  color: white;
}

.eupopup-button_1:hover {
  background-color: #5fbb60; /* softer green */
  color: #f0f0f0; /* soft white */
}

.eupopup-button_2 {
  background-color: transparent;
  color: #bbb;
  border: 1px solid #555;
}

.eupopup-button_2:hover {
  color: #eee;
  border-color: #777;
}

.eupopup-button_3 {
  background-color: #f44336;
  color: white;
}

.eupopup-button_3:hover {
  background-color: #f1655d; /* softer red */
   color: #f0f0f0; /* soft white */
}

.eupopup-closebutton {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
}

.eupopup-closebutton:hover {
  color: #fff;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .eupopup-buttons {
    flex-direction: column;
  }

  .eupopup-button {
    width: 100%;
    text-align: center;
  }
}
