.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0f435b;
  color: white;
  padding: 16px 24px;
  z-index: 2147483647;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  max-width: 100vw;
}

.cookie-popup-content h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.cookie-popup-content p {
  margin: 10px 0;
  font-size: 1rem;
}

.cookie-popup-buttons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.cookie-popup-buttons button {
  padding: 14px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  flex: 1 1 100%;
  min-width: 120px;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.accept-button {
  background-color: #f15a22;
  color: white;
}

.decline-button {
  background-color: #64757d;
  color: white;
}

.settings-button,
.save-button {
  background-color: #c1925f;
  color: white;
}

.cookie-settings {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: none;
}

.cookie-option {
  margin-bottom: 15px;
}

.cookie-option label {
  margin-left: 6px;
  font-weight: bold;
}

.cookie-description {
  margin: 5px 0 10px 25px;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (min-width: 481px) {
  .cookie-popup-buttons {
    flex-direction: row;
  }

  .cookie-popup-buttons button {
    flex: 1 1 auto;
  }
}