/* Cookie Consent Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent-banner h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.cookie-consent-banner p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.cookie-accept {
  background-color: #4CAF50;
  color: white;
}

.cookie-accept:hover {
  background-color: #45a049;
}

.cookie-reject {
  background-color: #f44336;
  color: white;
}

.cookie-reject:hover {
  background-color: #d32f2f;
}

.cookie-settings {
  background-color: #2196F3;
  color: white;
}

.cookie-settings:hover {
  background-color: #0b7dda;
}

/* Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 10000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #333;
}

.cookie-settings-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.cookie-category-description {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.cookie-settings-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-settings-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-settings-save {
  background-color: #4CAF50;
  color: white;
}

.cookie-settings-cancel {
  background-color: #f44336;
  color: white;
}

.cookie-settings-footer-info {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-button {
    width: 100%;
  }
}
