# Cookie consent banner/styles
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.92);
  color: #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-message {
  margin: 0 0 12px 0;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: none;
  border-radius: 9999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.cookie-btn-accept {
  background: #6366f1;
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #4f46e5;
}

.cookie-btn-reject {
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid #475569;
}

.cookie-btn-reject:hover {
  background: #111827;
}

.cookie-settings-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #475569;
  background: rgba(15, 23, 42, 0.9);
  color: #e2e8f0;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-settings-button:hover {
  background: #111827;
}

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
}

.cookie-settings-content {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.cookie-settings-title {
  margin: 0 0 8px 0;
}

.cookie-settings-description {
  margin: 0 0 12px 0;
  color: #cbd5e1;
}

.cookie-settings-option {
  margin-bottom: 16px;
}

.cookie-settings-label {
  font-weight: 600;
  margin-left: 8px;
}

.cookie-description {
  margin: 6px 0 0 0;
  color: #cbd5e1;
}

.cookie-settings-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
