/* Cookies */
.cookie-banner {
	position: fixed;
	top: 0;          /* move to top */
	left: 0;
	width: 100%;
	background-color: #1f2937; /* your dark background */
	color: #f9fafb;
  font-family: Lato, sans-serif;
	padding: 20px 16px;
	z-index: 9999;
	font-size: 14px;
}

.cookie-banner p {
  color: #f9fafb;
  font-size: 16px;
}

.cookie-banner a {
  color: #93c5fd;;
  font-size: 16px;
  text-decoration: underline;
}

.cookie-banner a:visited {
  color: #c7d2fe;
}

.cookie-banner a:hover,
.cookie-banner a:focus {
  color: #bfdbfe;
  text-decoration-thickness: 2px;
}

.cookie-buttons {
	margin-top: 12px;
}

.cookie-buttons button {
	margin-right: 8px;
	padding: 8px 14px;
	border: none;
	cursor: pointer;
  height:37px;
}

.cookie-buttons button:first-child {
	background-color: #134ECD;
	color: white;
}

.cookie-buttons button:nth-child(2) {
	background-color: #545764;
	color: white;
}

.cookie-buttons button:nth-child(3) {
	background-color: transparent;
	color: white;
	border: 1px solid white;
}


.cookie-modal-actions button {
  margin-right: 10px;
}

/* Modal overlay */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 10000;
  display: none;
}

/* Modal container */
.cookie-modal-content {
  background: #ffffff;
  max-width: 560px;
  margin: 8% auto;
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  font-family: inherit;
}

/* Title */
.cookie-modal-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

/* Description text */
.cookie-modal-content p {
  margin-bottom: 20px;
  color: #374151;
  font-size: 1rem;
  line-height: 1.5;
}

/* Cookie option */
.cookie-option {
  margin-bottom: 24px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #111827;
}

/* Checkbox */
.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Action buttons */
.cookie-modal-actions {
  display: flex;
  gap: 12px;
}

/* Primary button */
.cookie-modal-actions button:first-child {
  background-color: #134ECD;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
}

/* Secondary button */
.cookie-modal-actions button:last-child {
  background-color: transparent;
  color: #134ECD;
  border: 1px solid #134ECD;
  padding: 10px 16px;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Hover & focus states */
.cookie-modal-actions button:hover {
  opacity: 0.9;
}

.cookie-modal-actions button:focus {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-modal-content {
    margin: 16px;
    padding: 24px;
  }
}
.cookie-modal-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 20px 0;
}
