/**
 * Cookie Consent Banner Styles
 * Discreet, non-intrusive design
 */

.cookie-consent {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  z-index: 8000;
  max-width: 320px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent__content {
  background: var(--dark-bg-light, #161b22);
  border: 1px solid var(--border-color, #30363d);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent__text {
  color: var(--muted-text, #ccc);
  font-size: 0.875rem;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

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

.cookie-consent__btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-consent__btn--accept {
  background: var(--excel-green, #217346);
  color: white;
}

.cookie-consent__btn--accept:hover {
  background: var(--excel-green-light, #28a06d);
}

.cookie-consent__btn--decline {
  background: transparent;
  color: var(--muted-text, #ccc);
  border: 1px solid var(--border-color, #30363d);
}

.cookie-consent__btn--decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ==================== Responsive ==================== */
@media (max-width: 480px) {
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
