/* Cookie Consent Banner Styling */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: calc(100% - 48px);
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 65, 109, 0.15);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(13, 65, 109, 0.15);
  z-index: 100000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.cookie-consent-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cookie-consent-title {
  color: #0d416d;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.cookie-consent-icon {
  font-size: 20px;
}

.cookie-consent-text {
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.cookie-consent-text a {
  color: #0d416d;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-consent-text a:hover {
  color: #f7eb6a;
}

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

.cookie-consent-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
  box-sizing: border-box;
}

.cookie-consent-btn-accept {
  background-color: #0d416d;
  color: #ffffff;
}

.cookie-consent-btn-accept:hover {
  background-color: #082d4d;
  transform: translateY(-1px);
}

.cookie-consent-btn-decline {
  background-color: transparent;
  color: #0d416d;
  border: 1.5px solid #0d416d;
}

.cookie-consent-btn-decline:hover {
  background-color: rgba(13, 65, 109, 0.05);
  transform: translateY(-1px);
}

/* Mobile responsive */
@media screen and (max-width: 600px) {
  .cookie-consent-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }
  
  .cookie-consent-buttons {
    flex-direction: column-reverse;
    gap: 8px;
  }
  
  .cookie-consent-btn {
    width: 100%;
  }
}
