/* Styles pour la page cookies-manager.html */

/* Styles généraux */
.intro-text {
  margin-bottom: 20px;
}
.cookies-manager-container {
  max-width: 800px;
  margin: 6rem auto;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cookies-manager-container h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.cookie-category {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cookie-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #333;
  margin: 0;
}

.cookie-title i {
  margin-right: 10px;
  color: #bb0b0b;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #BB0B0B;
}

input:focus + .slider {
  box-shadow: 0 0 1px #BB0B0B;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.cookie-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-details {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.cookie-details h3 {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.cookie-details ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.cookie-details li {
  margin-bottom: 5px;
  color: #666;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.cookie-buttons button {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept-all {
  background-color: #bb0b0b;
  color: white;
  border: none;
}

.btn-accept-all:hover {
  background-color: #a00a0a;
}

.btn-save-preferences {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.btn-save-preferences:hover {
  background-color: #e9e9e9;
}

.cookies-saved {
  display: none;
  text-align: center;
  padding: 15px;
  background-color: #e8f5e9;
  color: #388e3c;
  border-radius: 4px;
  margin-top: 20px;
}

.more-info {
  text-align: center;
  margin-top: 30px;
  color: #777;
}

.more-info a {
  color: #bb0b0b;
  text-decoration: none;
}

.more-info a:hover {
  text-decoration: underline;
}