html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.dd-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
    align-items: start;
}
@media (max-width: 992px) {
    .dd-layout {
        grid-template-columns: 1fr;
    }
}

.rgpd-slot {
    border: none;
    padding: 0;
    background: none;
}

.token-chip {
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: grab;
    user-select: none;
    background: #fff;
    font-size: 13px;
    margin: 4px;
    display: inline-block;
}

token-chip {
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: grab;
    user-select: none;
    background: #fff;
    font-size: 13px;
    margin: 4px;
    display: inline-block;
}

.token-chip:active {
    cursor: grabbing;
}

.token-list {
    max-height: 60vh;
    overflow: auto;
}

.editor {
    width: 100%;
    min-height: 70vh;
    resize: none;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.preview {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    min-height: 200px;
}

.help {
    font-size: 12px;
    color: #666;
}

:root {
    --app-bg: #ffffff;
    --app-muted: #6b7280;
    --app-border: #e5e7eb;
}

body {
    background: var(--app-bg);
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero {
    padding: 18px 0 8px 0;
}

.card-soft {
    border: 1px solid var(--app-border);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,.04);
}

.navbar .nav-link {
    color: #111827;
}

    .navbar .nav-link:hover {
        color: #0d6efd;
    }

footer {
    background: #fff;
}