/* Cookie Consent Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: white;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
  margin-bottom: 10px;
}

.cookie-text a {
  color: #63b3ed;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

#accept-cookies-btn {
  background: #48bb78;
  color: white;
}

#accept-cookies-btn:hover {
  background: #38a169;
}

#reject-cookies-btn {
  background: transparent;
  color: white;
  border: 1px solid #718096;
}

#reject-cookies-btn:hover {
  background: rgba(255,255,255,0.1);
}

#customize-cookies-btn {
  background: #4299e1;
  color: white;
}

#customize-cookies-btn:hover {
  background: #3182ce;
}

/* Modal Styles */
#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  color: #333;
}

.modal-content h3 {
  margin-top: 0;
  color: #2d3748;
}

.cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.cookie-toggle input {
  margin-right: 10px;
}

.cookie-desc {
  margin-left: 28px;
  font-size: 0.9em;
  color: #4a5568;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.save-btn {
  background: #48bb78;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cancel-btn {
  background: #e53e3e;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}