/* --- GDPR Cookie Popup --- */
#gdpr-cookie-message {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 0.5rem;
  z-index: 1050;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
}

#gdpr-cookie-message h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#gdpr-cookie-message p {
  margin-bottom: 0.75rem;
  color: #212529;
}

#gdpr-cookie-message a {
  color: #0d6efd;
  text-decoration: underline;
}

#gdpr-cookie-message a:hover {
  text-decoration: none;
}

#gdpr-cookie-types {
  margin-top: 1rem;
}

#gdpr-cookie-types h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

#gdpr-cookie-types ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#gdpr-cookie-types li {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

#gdpr-cookie-types input[type="checkbox"] {
  margin-right: 0.5rem;
}

#gdpr-cookie-message button {
  margin-right: 0.5rem;
  border-radius: 0.375rem;
  padding: 0.375rem 1rem;
  border: none;
}

#gdpr-cookie-accept {
  background-color: #0d6efd;
  color: #fff;
}

#gdpr-cookie-accept:hover {
  background-color: #0b5ed7;
}

#gdpr-cookie-advanced {
  background-color: #e9ecef;
  color: #212529;
  display: none;
}

#gdpr-cookie-advanced:hover {
  background-color: #dee2e6;
}

/* --- Responsive adjustments --- */
@media (min-width: 768px) {
  #gdpr-cookie-message {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
  }

  #gdpr-cookie-message p:last-child {
    text-align: right;
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  #gdpr-cookie-message {
    text-align: left;
  }

  #gdpr-cookie-message p:last-child {
    text-align: left;
  }

  #gdpr-cookie-message button {
    display: inline-block;
    width: auto;
    margin-top: 0.5rem;
  }
}

#gdpr-cookie-message h4, #gdpr-cookie-message a, #gdpr-cookie-advanced {
  display: none !important;
}