/* 
 * Cookie Management Styles for Deutsche Reise
 */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent.hidden {
  transform: translateY(100%);
  opacity: 0;
}

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

.cookie-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cookie-content > p {
  margin-bottom: 20px;
  max-width: 800px;
}

.cookie-settings {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.cookie-option {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
}

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

.cookie-option input {
  margin-right: 10px;
  margin-top: 3px;
}

.cookie-option label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  flex: 1;
}

.cookie-option p {
  width: 100%;
  padding-left: 24px;
  margin-top: 5px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-option {
    padding: 12px;
  }
}
