

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2937;
  color: #f3f4f6;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid #374151;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
}

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

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  flex: 1;
  max-width: 600px;
}

.cookie-content p {
  margin: 0;
}

.cookie-content a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: #93c5fd;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner button {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cookie-banner .btn-accept {
  background-color: #60a5fa;
  color: #001f3f;
}

.cookie-banner .btn-accept:hover {
  background-color: #93c5fd;
}

.cookie-banner .btn-decline {
  background-color: transparent;
  color: #d1d5db;
  border: 1px solid #4b5563;
}

.cookie-banner .btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #6b7280;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-content {
    max-width: 100%;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-banner button {
    padding: 0.5rem 1rem;
  }
}
