/* Styles responsifs pour cookies-manager.html */

/* Tablettes */
@media (max-width: 992px) {
  .cookies-manager-container {
    max-width: 90%;
    margin: 4rem auto;
    padding: 25px;
  }
  
  .cookies-manager-container h1 {
    font-size: 28px;
  }
  
  .cookie-category {
    padding: 15px;
  }
  
  .cookie-buttons {
    gap: 15px;
  }
  
  .cookie-buttons button {
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* Mobiles larges */
@media (max-width: 768px) {
  /* Conteneur principal */
  .cookies-manager-container {
    max-width: 100%;
    margin: 2rem auto;
    padding: 20px;
    box-shadow: none;
    border-radius: 0;
  }
  
  .cookies-manager-container h1 {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  
  .intro-text {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  /* Catégories de cookies */
  .cookie-category {
    margin-bottom: 20px;
    padding: 15px;
  }
  
  /* Modification du header pour les petits écrans */
  .cookie-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .cookie-title {
    font-size: 18px;
    margin-right: 10px;
    max-width: 70%;
  }
  
  .cookie-toggle {
    width: 50px;
    height: 28px;
  }
  
  .slider:before {
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
  }
  
  input:checked + .slider:before {
    transform: translateX(22px);
  }
  
  /* Textes et descriptions */
  .cookie-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .cookie-details h3 {
    font-size: 15px;
  }
  
  .cookie-details li {
    font-size: 14px;
  }
  
  /* Boutons */
  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
  }
  
  .cookie-buttons button {
    width: 100%;
    padding: 12px 0;
  }
  
  /* Message de confirmation */
  .cookies-saved {
    font-size: 15px;
    padding: 12px;
  }
  
  /* Lien vers la politique */
  .more-info {
    font-size: 14px;
    margin-top: 20px;
  }
  
  /* Ajout d'espace pour la barre de recherche */
  .spacer {
    height: 40px;
    display: block;
  }
}

/* Petits écrans mobiles */
@media (max-width: 576px) {
  .cookies-manager-container {
    padding: 15px;
    margin: 1.5rem auto;
  }
  
  .cookies-manager-container h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .intro-text {
    font-size: 14px;
  }
  
  .cookie-category {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .cookie-title {
    font-size: 16px;
  }
  
  .cookie-description {
    font-size: 14px;
  }
  
  .cookie-details h3 {
    font-size: 14px;
  }
  
  .cookie-details li {
    font-size: 13px;
  }
  
  .cookie-buttons button {
    font-size: 14px;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .cookies-manager-container {
    padding: 10px;
  }
  
  .cookies-manager-container h1 {
    font-size: 20px;
  }
  
  .cookie-category {
    padding: 10px;
  }
  
  .cookie-title {
    font-size: 15px;
  }
  
  .cookie-toggle {
    width: 45px;
    height: 25px;
  }
  
  .slider:before {
    height: 17px;
    width: 17px;
  }
  
  input:checked + .slider:before {
    transform: translateX(20px);
  }
}