/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #e9ecef;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(15, 112, 183, 0.1);
  max-height: 200px;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
  display: none;
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner-title {
  font-size: 16px;
  font-weight: 600;
  color: #273d4e;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.cookie-banner-text {
  font-size: 14px;
  color: #444444;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-link {
  color: #0f70b7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-banner-link:hover {
  color: #0a5290;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  min-width: 300px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #0f70b7;
  color: #ffffff;
  border: 2px solid #0f70b7;
}

.cookie-btn-accept:hover {
  background-color: #0a5290;
  border-color: #0a5290;
  box-shadow: 0 2px 8px rgba(15, 112, 183, 0.3);
}

.cookie-btn-reject {
  background-color: transparent;
  color: #0f70b7;
  border: 2px solid #0f70b7;
}

.cookie-btn-reject:hover {
  background-color: #f0f0f0;
  border-color: #0a5290;
  color: #0a5290;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px;
    flex-direction: column;
  }

  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    min-width: auto;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-banner-title {
    font-size: 15px;
  }

  .cookie-banner-text {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-title {
    font-size: 14px;
  }

  .cookie-banner-text {
    font-size: 12px;
  }

  .cookie-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}
