/* Consent Manager Styles */

/* Banner */
.consent-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #091717;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  max-width: 90%;
  width: 700px;
  border-radius: 8px;
}

.consent-content {
  margin: 0 auto;
  text-align: center;
}

.consent-content h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.consent-content p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.consent-content a {
  color: #ff9b7e;
  text-decoration: none;
}

.consent-content a:hover {
  text-decoration: underline;
}

.consent-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.consent-button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.consent-button.accept {
  background-color: #ff9b7e;
  color: #fff;
}

.consent-button.accept:hover {
  background-color: #e88c70;
}

.consent-button.reject {
  background-color: #f4f2ed;
  color: #091717;
}

.consent-button.reject:hover {
  background-color: #e8e6e1;
}

.consent-button.customize {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.consent-button.customize:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dialog */
.consent-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #333;
  padding: 30px;
  z-index: 10000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  font-family: Arial, sans-serif;
}

.consent-dialog-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #091717;
}

.consent-option {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.consent-option:last-child {
  border-bottom: none;
}

.consent-option label {
  font-weight: bold;
  margin-left: 10px;
}

.consent-description {
  margin-top: 5px;
  margin-left: 30px;
  font-size: 0.9rem;
  color: #666;
}

.consent-dialog-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.consent-button.save {
  background-color: #ff9b7e;
  color: #fff;
}

.consent-button.save:hover {
  background-color: #e88c70;
}

.consent-button.cancel {
  background-color: #f4f2ed;
  color: #091717;
}

.consent-button.cancel:hover {
  background-color: #e8e6e1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .consent-content h3 {
    font-size: 1.2rem;
  }
  
  .consent-content p {
    font-size: 0.9rem;
  }
  
  .consent-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .consent-dialog {
    padding: 20px;
  }
  
  .consent-dialog-content h3 {
    font-size: 1.2rem;
  }
  
  .consent-description {
    font-size: 0.8rem;
  }
} 