/* Cookie Notice Banner Styles */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-notice-text {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-notice-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-notice-text a:hover {
  text-decoration: none;
}

.cookie-notice-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-notice .button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-notice .button:hover {
  background-color: #fff;
  color: #000;
}

.cookie-notice .button.cookie-reject {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-notice .button.cookie-reject:hover {
  border-color: #fff;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-notice-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-notice-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-notice .button {
    width: 100%;
  }
}
