/* Cookie Consent Styling */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1f2c;
  color: white;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-banner-content a {
  color: #78c2ff;
  text-decoration: underline;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1rem;
}

.cookie-modal-content {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  color: #333;
}

.cookie-modal-content h2 {
  margin-top: 0;
  color: #1a1f2c;
}

.cookie-settings {
  margin: 1.5rem 0;
}

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

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

.cookie-setting label {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.cookie-setting input {
  margin-right: 0.5rem;
}

.cookie-setting p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.cookie-btn-primary {
  background-color: #3b82f6;
  color: white;
}

.cookie-btn-secondary {
  background-color: #e5e7eb;
  color: #1f2937;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-modal-content {
    padding: 1rem;
  }
}
