/* Cookie Notice Banner */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: #fff;
  z-index: 1050;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-notice__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-notice__text {
  flex: 1;
  min-width: 200px;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-notice__link {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
  font-size: 14px;
}

.cookie-notice__link:hover {
  color: #fff;
  opacity: 1;
}

.cookie-notice__button {
  background-color: #fff;
  color: #212529;
  border: none;
  padding: 6px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-notice__button:hover {
  background-color: #f8f9fa;
  color: #212529;
}

@media (max-width: 576px) {
  .cookie-notice__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-notice__actions {
    width: 100%;
    justify-content: space-between;
  }
}
