/* Cookie Consent Modal Styles */
/* See CLAUDE.md - Security & Design Best Practices Mandate */
/* CSP Compliant - No inline styles */

.cookie-consent-modal {
  z-index: 10001; /* Above other modals */
}

.cookie-consent-content {
  max-width: 550px;
  padding: 2em;
}

.cookie-consent-list {
  text-align: left;
  margin: 1em 0;
  padding-left: 1.5em;
  list-style: none;
}

.cookie-consent-list li {
  margin: 0.5em 0;
  position: relative;
  padding-left: 1.5em;
}

.cookie-consent-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffee00;
  font-weight: bold;
}

.cookie-consent-list strong {
  color: #ffee00;
}

.cookie-consent-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin-top: 1.5em;
}

.cookie-consent-btn {
  width: 100%;
  font-size: 1em;
}

/* Link styling within modal */
.cookie-consent-content a {
  color: #ffee00;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-consent-content a:hover {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-consent-content {
    padding: 1.5em;
    max-width: 95%;
  }

  .cookie-consent-list {
    font-size: 0.95em;
  }

  .cookie-consent-btn {
    font-size: 0.95em;
  }
}

/* Animation for cookie modal entrance */
.cookie-consent-modal.show .cookie-consent-content {
  animation: slideInFromBottom 0.3s ease-out;
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
