cookie-consent-advanced {
  display: block;
  font-family: "Segoe UI", sans-serif;
}

cookie-consent-advanced:not(.visible) {
  display: none !important;
}

.cc-banner {
  background: #000;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  animation: cc-fadeIn 0.5s ease-out;
  color: #01010b;
}

.cc-banner p {
  margin: 0 0 1rem 0;
  color: #D3C2C2;
}

.cc-banner .csck-read-more {
  color: #007cba;
  text-decoration: underline;
}

.cc-buttons {
  text-align: right;
}

.cc-buttons button {
  background-color: #007cba;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cc-buttons button:hover {
  background-color: #005fa3;
}

.cc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cc-modal.open {
  display: flex;
}

.cc-modal-content {
  background: #000;
  border-radius: 8px;
  padding: 2rem;
  width: auto;
  max-width: 90vw;
  min-width: 300px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.cc-modal-content h2 {
  color: #D3C2C2;
}
.cc-category label {
  display: block;
  margin: 0.5rem 0;
  color: #D3C2C2;  
}

.cc-actions {
  margin-top: 1.5rem;
  text-align: right;
}

.cc-actions button {
  background-color: #007cba;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.cc-actions button:hover {
  background-color: #005fa3;
}

@keyframes cc-fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
