/* Cookie Consent Banner Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cookie-consent-content {
  flex: 1;
  margin-right: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

#cookie-consent-accept {
  background-color: #3498db;
  color: white;
}

#cookie-consent-accept:hover {
  background-color: #2980b9;
}

#cookie-consent-settings {
  background-color: #7f8c8d;
  color: white;
}

#cookie-consent-settings:hover {
  background-color: #95a5a6;
}

.cookie-settings-panel {
  display: none;
  padding: 1rem;
  background: #34495e;
  margin-top: 1rem;
  border-radius: 4px;
}

.cookie-settings-option {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.cookie-settings-option input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-settings-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-content {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
}
