/* Button styling */
button {
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

/* Preferences modal adjustments */
#cookie-preference-modal {
  max-width: 400px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 2000;
}






/* Default link style */
#cookie-consent-banner a {
  color: #4CAF50; /* Default color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease; /* Smooth transition */
}

/* Hover effect for links */
#cookie-consent-banner a:hover {
  color: #f0ad4e; /* Hover color */
  text-decoration: underline; /* Underline on hover */
}

