/**
 * Styles pour la bannière de consentement aux cookies
 * Conforme à la loi algérienne 18-07 et au RGPD
 * @version 1.0.0
 */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: #fff;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-accept {
  background-color: var(--primary-color, #3a5cf7);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-accept:hover {
  background-color: #2a4ce7;
}

.btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Styles responsives */
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .cookie-content p {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
