.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #23262a;
  color: #eaeef5;
  font-size: 12px;
  border-radius: 8px;
  padding: 16px;
  z-index: 9999;
  max-width: 600px;
  margin: auto;
  display: none;
}

.cookie-modal {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}
.cookie-banner h3,
.cookie-modal h3 {
  margin: 0 0 12px 0;
}
.cookie-banner p a,
.cookie-modal p a {
  color: #0abbb5;
  text-decoration: none;
}
.cookie-banner label,
.cookie-modal label {
  display: flex;
  margin-bottom: 6px;
}
.cookie-banner label strong,
.cookie-modal label strong {
  padding: 4px 0 0 0;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cookie-banner label,
.cookie-modal label {
  cursor: pointer;
}
.checkbox-custom.necessary {
  opacity: 0.5;
}
.cookie-actions button {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background: #0abbb5;
  color: white;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: #eaff13;
  color: #23262a;
}