/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__content {
  flex: 1;
  min-width: 250px;
}

.cookie-banner__title {
  font-size: 18px;
  font-weight: 700;
  color: #0e538b;
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text a {
  color: #0e538b;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__button--accept {
  background-color: #0e538b;
  color: #ffffff;
}

.cookie-banner__button--accept:hover {
  background-color: #0a3d63;
}

.cookie-banner__button--reject {
  background-color: #f3f4f6;
  color: #374151;
}

.cookie-banner__button--reject:hover {
  background-color: #e5e7eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-banner__container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__button {
    flex: 1;
    text-align: center;
  }
}

/* Mobile specific */
@media (max-width: 576px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner__title {
    font-size: 16px;
  }

  .cookie-banner__text {
    font-size: 13px;
  }

  .cookie-banner__button {
    padding: 10px 16px;
    font-size: 13px;
  }
}
