:root {
    --rd-orange: #ff6a00;
    --rd-accent: #ff6a00;
    --rd-orange-dark: #e85e00;
    --rd-orange-soft: #fff1e6;
    --rd-orange-mid: #ffe0cc;
    --rd-text: #1f2937;
    --rd-muted: #6b7280;
    --rd-line: #eef0f3;
    --rd-bg: #f3f5f7;
    --rd-card: #ffffff;
    --rd-green: #067647;
    --rd-green-bg: #e7f8ee;
    --rd-radius: 12px;
    --rd-sidebar: 248px;
    --rd-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 24px rgba(16, 24, 40, 0.04);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.rd-body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--rd-text);
    background: var(--rd-bg);
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.rd-ico { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }

/* Login */
.rd-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, var(--rd-bg) 100%);
}
.rd-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--rd-shadow);
    padding: 2rem 1.75rem 1.75rem;
    border: 1px solid var(--rd-line);
}
.rd-login-logo { display: block; height: 36px; margin: 0 auto 1.5rem; }
.rd-login-card h1 { margin: 0 0 0.35rem; font-size: 1.35rem; text-align: center; }
.rd-lead { margin: 0 0 1.25rem; color: var(--rd-muted); text-align: center; font-size: 0.95rem; }
.rd-login-card label { display: block; margin: 0.75rem 0 0.3rem; font-size: 0.9rem; font-weight: 600; }
.rd-login-card input[type="email"],
.rd-login-card input[type="password"],
.rd-login-card input[type="text"] {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid #d9dee6;
    border-radius: 10px;
    background: #fff;
}
.rd-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 148px;
    margin-top: 1.1rem;
    border: 0;
    background: var(--rd-orange);
    color: #fff;
    font-weight: 700;
    padding: 0.7rem 1.15rem;
    border-radius: 10px;
    cursor: pointer;
}
.rd-login-card .rd-btn-primary { width: 100%; }
.rd-btn-primary:hover { background: var(--rd-orange-dark); }
.rd-alert {
    background: #fdecea;
    color: #7a1f1a;
    padding: 0.7rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #f0c2bd;
}
.rd-linkish {
    display: block;
    margin-top: 0.85rem;
    text-align: center;
    background: none;
    border: 0;
    color: var(--rd-muted);
    text-decoration: underline;
    cursor: pointer;
    width: 100%;
}

/* App shell */
.rd-nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.rd-wrap {
    display: flex;
    min-height: 100vh;
}
.rd-sidebar {
    width: var(--rd-sidebar);
    background: #fff;
    border-right: 1px solid var(--rd-line);
    display: flex;
    flex-direction: column;
    padding: 1.1rem 0.85rem 1rem;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 30;
}
.rd-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.6rem 1.1rem;
}
.rd-brand img { height: 32px; display: block; }
.rd-nav { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; overflow: auto; }
.rd-nav a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.62rem 0.75rem;
    border-radius: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 0.92rem;
}
.rd-nav a:hover { background: #f7f8fa; }
.rd-nav a.is-active {
    background: var(--rd-orange);
    color: #fff;
}
.rd-nav .rd-badge-count {
    margin-left: auto;
    background: #fff;
    color: var(--rd-orange);
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.rd-nav a.is-active .rd-badge-count {
    background: #fff;
    color: var(--rd-orange);
}
.rd-support-box {
    margin-top: 0.75rem;
    background: #f7f8fa;
    border-radius: 12px;
    padding: 0.9rem;
    font-size: 0.82rem;
}
.rd-support-box strong { display: block; margin-bottom: 0.2rem; }
.rd-support-box span { color: var(--rd-muted); }
.rd-support-box .rd-btn-outline {
    margin-top: 0.7rem;
    width: 100%;
    border: 1px solid var(--rd-orange);
    color: var(--rd-orange);
    background: #fff;
    border-radius: 9px;
    padding: 0.5rem 0.6rem;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    justify-content: center;
}

.rd-maincol { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.rd-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.4rem;
    background: #fff;
    border-bottom: 1px solid var(--rd-line);
}
.rd-menu-btn {
    display: none;
    border: 0;
    background: #f3f5f7;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.rd-host { color: var(--rd-muted); font-weight: 600; font-size: 0.92rem; margin-right: auto; }
.rd-top-actions { display: flex; align-items: center; gap: 0.45rem; }
.rd-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--rd-line);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    position: relative;
}
.rd-icon-btn .rd-dot {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--rd-orange);
    border-radius: 50%;
}
.rd-user {
    position: relative;
    margin-left: 0.25rem;
}
.rd-user > summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    padding: 0.2rem 0.35rem 0.2rem 0.55rem;
    border-radius: 999px;
}
.rd-user > summary::-webkit-details-marker { display: none; }
.rd-user-name { font-weight: 700; font-size: 0.88rem; max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rd-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rd-orange-soft);
    color: var(--rd-orange-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.rd-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--rd-line);
    border-radius: 10px;
    min-width: 180px;
    box-shadow: var(--rd-shadow);
    padding: 0.4rem;
    z-index: 40;
}
.rd-user-menu a,
.rd-user-menu button {
    display: block;
    width: 100%;
    border: 0;
    background: none;
    text-align: left;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    box-sizing: border-box;
}
.rd-user-menu a:hover,
.rd-user-menu button:hover { background: #f7f8fa; }

.rd-staff {
    background: #fff7ed;
    color: #9a3412;
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid #fed7aa;
}

.rd-content { padding: 1.35rem 1.4rem 5.5rem; flex: 1; }
.rd-hello { margin-bottom: 0.35rem; }
.rd-hello h1 { margin: 0 0 0.25rem; font-size: 1.55rem; }
.rd-hello p { margin: 0 0 0.85rem; color: var(--rd-muted); }

.rd-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
    margin-bottom: 1rem;
}
.rd-kpi {
    background: var(--rd-card);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    padding: 1rem 1.05rem 0.9rem;
    border: 1px solid #f0f2f5;
}
.rd-kpi-top { display: flex; justify-content: space-between; align-items: flex-start; }
.rd-kpi-label { color: var(--rd-muted); font-size: 0.82rem; font-weight: 600; }
.rd-kpi-value { font-size: 1.7rem; font-weight: 800; margin: 0.35rem 0 0.55rem; }
.rd-kpi-link { color: var(--rd-orange); font-weight: 700; font-size: 0.82rem; }
.rd-kpi-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--rd-orange-soft);
    color: var(--rd-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rd-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}
.rd-card {
    background: var(--rd-card);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    border: 1px solid #f0f2f5;
    padding: 1.2rem 1.25rem 1.25rem;
}
.rd-card h2 {
    margin: 0 0 0.9rem;
    font-size: 1.02rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--rd-line);
}
.rd-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--rd-line);
}
.rd-row:last-child { border-bottom: 0; }
.rd-row-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f3f5f7;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rd-row-main { flex: 1; min-width: 0; }
.rd-row-title { font-weight: 700; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rd-row-sub { color: var(--rd-muted); font-size: 0.78rem; }
.rd-muted { color: var(--rd-muted); font-size: 0.9rem; margin: 0; }

.rd-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}
.rd-badge-ok { background: var(--rd-green-bg); color: var(--rd-green); }
.rd-badge-open { background: var(--rd-orange-soft); color: var(--rd-orange-dark); }
.rd-badge-reply { background: #fff4e5; color: #c2410c; }
.rd-badge-closed { background: #f3f4f6; color: #6b7280; }
.rd-badge-done { background: var(--rd-green-bg); color: var(--rd-green); }

.rd-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.rd-table th {
    text-align: left;
    color: var(--rd-muted);
    font-weight: 600;
    padding: 0.45rem 0.4rem 0.65rem;
    border-bottom: 1px solid var(--rd-line);
}
.rd-table td { padding: 0.7rem 0.4rem; border-bottom: 1px solid var(--rd-line); }
.rd-table tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; }

.rd-bottom {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--rd-line);
    padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom));
    z-index: 25;
}
.rd-bottom a, .rd-bottom label {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #6b7280;
    padding: 0.35rem 0;
}
.rd-bottom a.is-active { color: var(--rd-orange); }

.rd-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.35);
    z-index: 25;
    cursor: pointer;
}

.rd-login-links { text-align: center; margin: 1rem 0 0; }
.rd-login-links a { color: var(--rd-orange, #ff6a00); font-weight: 700; font-size: 0.9rem; }
.rd-ok {
    background: #e7f8ee;
    color: #067647;
    padding: 0.7rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #b7e4c7;
}
.rd-flash { margin: 0 0 1rem; }
.rd-account-card {
    margin-bottom: 1rem;
    max-width: 760px;
}
.rd-account-card h2 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.rd-account-card h2::before {
    content: "";
    width: 4px;
    height: 1.05rem;
    border-radius: 4px;
    background: var(--rd-orange);
    flex-shrink: 0;
}
.rd-account-card h3 { font-size: 0.92rem; margin: 1.15rem 0 0.5rem; color: #111827; }
.rd-account-card > .rd-muted { margin: -0.35rem 0 0.9rem; }
.rd-stack label { display: block; margin: 0.7rem 0 0.3rem; font-size: 0.86rem; font-weight: 600; }
.rd-stack input[type="password"],
.rd-stack input[type="text"],
.rd-stack input[type="email"] {
    width: 100%;
    max-width: 100%;
    padding: 0.62rem 0.75rem;
    border: 1px solid #d9dee6;
    border-radius: 10px;
    background: #fff;
}
.rd-stack input:focus {
    outline: 2px solid var(--rd-orange-mid);
    border-color: var(--rd-orange);
}
.rd-btn-inline,
.rd-btn-primary.rd-btn-inline {
    width: auto;
    margin-top: 0.95rem;
    padding: 0.58rem 1.15rem;
}
.rd-hint { color: var(--rd-muted); font-size: 0.8rem; margin: 0.4rem 0 0.65rem; line-height: 1.4; }
.rd-qr {
    margin: 0.75rem 0;
    display: inline-block;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--rd-line);
    border-radius: 8px;
    line-height: 0;
}
.rd-qr svg,
.rd-qr img,
.rd-qr-img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    border: 0;
    border-radius: 0;
    background: #fff;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
.rd-secret {
    display: block;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    word-break: break-all;
    background: #f7f8fa;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    margin: 0 0 0.35rem;
}
.rd-twofa-actions { margin-top: 1rem; }
.rd-twofa-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
}
.rd-twofa-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.rd-twofa-verify,
.rd-twofa-regen {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}
.rd-twofa-verify input {
    width: 7.25rem;
    padding: 0.58rem 0.75rem;
    border: 1px solid #d9dee6;
    border-radius: 10px;
    background: #fff;
}
.rd-twofa-verify .rd-btn-primary,
.rd-twofa-regen .rd-btn-quiet {
    margin-top: 0;
    min-width: 0;
    width: auto;
    white-space: nowrap;
}
.rd-codes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1rem; font-family: ui-monospace, monospace; font-size: 0.85rem; padding-left: 1.1rem; }
.rd-inline-form { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; margin: 0.45rem 0; }
.rd-inline-form input[type="text"], .rd-inline-form select {
    padding: 0.5rem 0.65rem;
    border: 1px solid #d9dee6;
    border-radius: 8px;
    min-width: 220px;
    background: #fff;
}
.rd-sec-list { list-style: none; margin: 0.35rem 0 0; padding: 0; }
.rd-sec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--rd-line); font-size: 0.88rem; }
.rd-placeholder {
    background: #fff;
    border-radius: var(--rd-radius);
    padding: 2rem 1.25rem;
    text-align: center;
    color: var(--rd-muted);
    box-shadow: var(--rd-shadow);
}
.rd-btn-outline.rd-btn-inline,
button.rd-btn-outline {
    border: 1px solid var(--rd-orange);
    background: #fff;
    color: var(--rd-orange);
    border-radius: 9px;
    padding: 0.5rem 0.85rem;
    font-weight: 700;
    cursor: pointer;
    width: auto;
}
.rd-btn-outline.rd-btn-inline:hover,
button.rd-btn-outline:hover { background: var(--rd-orange-soft); }

.rd-subnav {
    margin: 0 0 1.15rem;
    max-width: 760px;
}
.rd-subnav ul {
    list-style: none;
    margin: 0;
    padding: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    background: #fff;
    border: 1px solid var(--rd-line);
    border-radius: 12px;
    box-shadow: var(--rd-shadow);
}
.rd-subnav a {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #4b5563;
    border-radius: 8px;
    white-space: nowrap;
}
.rd-subnav a:hover { background: var(--rd-orange-soft); color: var(--rd-orange-dark); }
.rd-subnav a.is-active {
    background: var(--rd-orange);
    color: #fff;
}
#profil, #sifre, #iki-adim, #giris-kaynagi { scroll-margin-top: 4.5rem; }
.rd-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1rem;
}
#sifre .rd-stack input[type="password"] { max-width: 320px; }
#iki-adim .rd-stack input[type="text"],
#iki-adim .rd-stack input[type="password"] { max-width: 280px; }
.rd-check,
.rd-stack label.rd-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin: 1rem 0 0.15rem;
}
.rd-check input { width: auto; accent-color: var(--rd-orange); }
.rd-dl { display: grid; grid-template-columns: 140px 1fr; gap: 0.4rem 1rem; margin: 0.5rem 0 0; }
.rd-dl dt { color: var(--rd-muted); font-size: 0.82rem; }
.rd-dl dd { margin: 0; font-weight: 600; }
.rd-pager { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.9rem; }
.rd-pager a {
    min-width: 2rem;
    text-align: center;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--rd-line);
    font-weight: 700;
    font-size: 0.85rem;
}
.rd-pager a.is-active {
    background: var(--rd-orange);
    color: #fff;
    border-color: transparent;
}
.rd-nowrap { white-space: nowrap; }

.rd-account-flash { max-width: 760px; }
.rd-staff-note {
    background: #fff7ed;
    color: #9a3412;
    padding: 0.7rem 0.85rem;
    margin: 0 0 1rem;
    border-radius: 10px;
    border: 1px solid #fed7aa;
    font-size: 0.88rem;
    font-weight: 600;
}
.rd-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
}
.rd-status-on { background: var(--rd-green-bg); color: var(--rd-green); }
.rd-status-off { background: #f3f4f6; color: #6b7280; }
.rd-status-wait { background: #fff7ed; color: #c2410c; }
.rd-btn-quiet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-weight: 700;
    padding: 0.5rem 0.9rem;
    border-radius: 9px;
    cursor: pointer;
    width: auto;
    min-width: 0;
    margin-top: 0;
}
.rd-btn-quiet:hover { background: #f3f5f7; }
.rd-btn-quiet:disabled,
.rd-btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.rd-inline-form .rd-btn-primary,
.rd-inline-form .rd-btn-quiet { margin-top: 0; min-width: 0; }
.rd-security-wrap { max-width: 760px; }
.rd-session-card {
    background: #fff;
    border: 1px solid var(--rd-line);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    padding: 1rem 1.15rem 0.85rem;
    margin: 0 0 1rem;
}
.rd-session-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rd-muted);
    margin-bottom: 0.35rem;
}
.rd-session-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    font-weight: 800;
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
}
.rd-chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.65rem 0 0.15rem; }
.rd-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 800;
}
.rd-chip-ok { background: var(--rd-green-bg); color: var(--rd-green); }
.rd-chip-warn { background: #fff4e5; color: #c2410c; }
.rd-restrict {
    background: #fff;
    border: 1px solid var(--rd-line);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    padding: 1rem 1.15rem 1.05rem;
    margin: 0 0 0.85rem;
    border-left: 5px solid #d1d5db;
}
.rd-restrict.is-on { border-left-color: var(--rd-green); }
.rd-restrict.is-off { border-left-color: #c4c9d1; }
.rd-restrict-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
}
.rd-restrict-head h3 { margin: 0; font-size: 1rem; }
.rd-restrict-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; margin: 0.35rem 0 0.55rem; }
.rd-restrict-actions label { font-size: 0.85rem; font-weight: 600; }
.rd-lock-note {
    width: 100%;
    margin: 0 0 0.35rem;
    padding: 0.55rem 0.7rem;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}
.rd-sec-list li { align-items: center; }
.rd-sec-actions { display: inline-flex; align-items: center; gap: 0.45rem; flex-shrink: 0; }
.rd-sec-list .rd-linkish {
    width: auto;
    margin: 0;
    text-align: right;
    color: #b42318;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.82rem;
}
.rd-sec-list .rd-linkish:hover { text-decoration: underline; }
.rd-keep-note { color: var(--rd-muted); font-size: 0.75rem; font-weight: 700; }

@media (max-width: 720px) {
    .rd-form-grid { grid-template-columns: 1fr; }
    .rd-dl { grid-template-columns: 1fr; }
    .rd-account-card { max-width: none; }
}

@media (max-width: 1100px) {
    .rd-kpis { grid-template-columns: 1fr 1fr; }
    .rd-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .rd-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-105%);
        transition: transform 0.2s ease;
        box-shadow: var(--rd-shadow);
    }
    .rd-nav-toggle:checked ~ .rd-wrap .rd-sidebar { transform: none; }
    .rd-nav-toggle:checked ~ .rd-overlay { display: block; }
    .rd-menu-btn { display: inline-flex; }
    .rd-host { font-size: 0.8rem; }
    .rd-user-name { display: none; }
    .rd-content { padding: 1rem 0.9rem 5.75rem; }
    .rd-bottom { display: flex; }
    .rd-hello h1 { font-size: 1.28rem; }
}
