#c15t-cookie-banner,
#c15t-cookie-dialog {
  font-family: var(--sans, "Libre Franklin", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
  color: var(--ink, #13233f);
}

#c15t-cookie-banner[hidden],
#c15t-cookie-dialog[hidden] {
  display: none;
}

#c15t-cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 9999;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line, #d4ddec);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(19, 35, 63, 0.16);
}

#c15t-cookie-banner h2,
#c15t-cookie-dialog h2 {
  margin: 0;
  color: var(--ink, #13233f);
  font-size: 18px;
  line-height: 1.2;
}

#c15t-cookie-banner p,
#c15t-cookie-dialog p {
  margin: 6px 0 0;
  color: var(--body, #33415c);
  font-size: 14px;
  line-height: 1.5;
}

#c15t-cookie-dialog {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(19, 35, 63, 0.28);
}

.c15t-dialog-card {
  width: min(100%, 440px);
  padding: 20px;
  border: 1px solid var(--line, #d4ddec);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(19, 35, 63, 0.22);
}

.c15t-dialog-card label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  color: var(--ink, #13233f);
  font-size: 14px;
  font-weight: 600;
}

.c15t-dialog-card label:first-of-type {
  margin-top: 18px;
}

.c15t-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.c15t-dialog-card .c15t-actions {
  margin-top: 20px;
}

.c15t-actions button {
  min-height: 40px;
  padding: 0 14px;
  cursor: pointer;
  border: 1px solid var(--blue, #1160ea);
  border-radius: 8px;
  background: var(--blue, #1160ea);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.c15t-actions button:first-child,
.c15t-actions button[data-c15t-action="manage"] {
  border-color: var(--line, #d4ddec);
  background: #ffffff;
  color: var(--blue-dark, #0b47bf);
}

.c15t-actions button:focus-visible {
  outline: 3px solid var(--focus, #1160ea);
  outline-offset: 2px;
}

@media (max-width: 680px) {
  #c15t-cookie-banner {
    grid-template-columns: 1fr;
  }

  .c15t-actions {
    justify-content: stretch;
  }

  .c15t-actions button {
    flex: 1 1 120px;
  }
}
