/* Cookie Popup Container */
#cookie-manage-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  backdrop-filter: blur(2px);
  opacity: 0;
  animation: fadeIn 0.3s ease-out forwards;
}

/* Popup Content Box */
#cookie-manage-popup > div {
  background: black;
  max-width: 500px;
  margin: 5% auto;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px #00abf0;
  transform: translateY(20px);
  animation: slideUp 0.4s ease-out 0.2s forwards;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Title */
#cookie-manage-popup h3 {
  margin-top: 0;
  color: white;
}

/* Cookie Option Box */
.cookie-option {
  margin: 20px 0;
  padding: 15px;
  background: black;
  border-radius: 6px;
}

/* Checkbox & Label Alignment */
.cookie-option-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* Checkbox Spacing */
.cookie-checkbox {
  margin-right: 12px;
}

/* Description Text */
.cookie-description {
  margin: 0 0 0 28px;
  color: white;
  font-size: 0.9em;
}

/* Button Container */
.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}

/* Cancel Button */
.cookie-btn-cancel {
  padding: 8px 16px;
  background: red;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Save Button */
.cookie-btn-save {
  padding: 8px 16px;
  background: linear-gradient(to right, #6c5ce7, #00abf0);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Label Styling */
.cookie-label {
  font-weight: 500;
  color: white;
}
