/* ============================================================
   Panel Administratora ZENIT – admin.css
   ============================================================ */
:root {
    --a-primary:   #1a9fd4;
    --a-accent:    #c8a040;
    --a-sidebar:   #0a5a8c;
    --a-text:      #1e2d3a;
    --a-bg:        #f0f8fd;
    --a-white:     #ffffff;
    --a-border:    #b3ddf2;
    --a-success:   #2ecc71;
    --a-danger:    #e74c3c;
    --a-warning:   #f39c12;
    --a-info:      #1a9fd4;
    --a-shadow:    0 2px 12px rgba(14,122,170,.12);
    --a-radius:    10px;
    --a-sidebar-w: 260px;
    --ff:          'Open Sans', sans-serif;
    --ff-h:        'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body {
    font-family: var(--ff);
    background: var(--a-bg);
    color: var(--a-text);
    line-height: 1.6;
    min-height: 100vh;
}
a { color: var(--a-primary); text-decoration: none; }
a:hover { color: var(--a-accent); }
img { max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* === LAYOUT === */
.admin-wrap { display: flex; min-height: 100vh; }

/* === SIDEBAR === */
.admin-sidebar {
    width: var(--a-sidebar-w);
    background: var(--a-sidebar);
    color: rgba(255,255,255,.85);
    display: flex; flex-direction: column;
    position: fixed; left: 0; top: 0; bottom: 0;
    z-index: 100; overflow-y: auto;
    transition: transform .3s ease;
}
.sidebar-logo {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; gap: .75rem;
}
.sidebar-logo-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--a-accent); border-radius: 8px;
    font-family: var(--ff-h); font-size: 1.4rem; font-weight: 800; color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.sidebar-logo-text span { display: block; }
.sidebar-logo-name { font-family: var(--ff-h); font-size: .95rem; font-weight: 700; color: #fff; }
.sidebar-logo-sub  { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .05em; }

.sidebar-nav { flex: 1; padding: 1rem 0; }
.sidebar-section {
    font-size: .65rem; text-transform: uppercase; letter-spacing: .1em;
    color: rgba(255,255,255,.35); padding: .75rem 1.25rem .35rem;
}
.sidebar-link {
    display: flex; align-items: center; gap: .75rem;
    padding: .7rem 1.25rem;
    color: rgba(255,255,255,.75);
    font-size: .875rem; font-weight: 500;
    transition: all .2s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
}
.sidebar-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.sidebar-link.active { color: #fff; border-left-color: var(--a-accent); background: rgba(255,255,255,.08); }
.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.sidebar-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .8rem; color: rgba(255,255,255,.4);
}
.sidebar-footer a { color: rgba(255,255,255,.6); }
.sidebar-footer a:hover { color: #fff; }

/* === MAIN CONTENT === */
.admin-main {
    margin-left: var(--a-sidebar-w);
    flex: 1; display: flex; flex-direction: column;
}

.admin-topbar {
    background: var(--a-white);
    padding: 1rem 1.75rem;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--a-shadow);
    position: sticky; top: 0; z-index: 50;
    gap: 1rem;
}
.admin-topbar h1 {
    font-family: var(--ff-h); font-size: 1.1rem; font-weight: 700;
    color: var(--a-primary);
}
.topbar-actions { display: flex; gap: .75rem; align-items: center; }

.admin-content { padding: 1.75rem; flex: 1; }

/* === CARDS === */
.a-card {
    background: var(--a-white);
    border-radius: var(--a-radius);
    box-shadow: var(--a-shadow);
    overflow: hidden;
}
.a-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--a-border);
    display: flex; align-items: center; justify-content: space-between;
}
.a-card-header h2 { font-family: var(--ff-h); font-size: 1rem; color: var(--a-primary); }
.a-card-body { padding: 1.5rem; }

/* === STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
    background: var(--a-white);
    border-radius: var(--a-radius);
    padding: 1.5rem;
    box-shadow: var(--a-shadow);
    display: flex; align-items: center; gap: 1rem;
    border-left: 4px solid var(--a-primary);
}
.stat-card.accent { border-left-color: var(--a-accent); }
.stat-card.success { border-left-color: var(--a-success); }
.stat-card.info { border-left-color: var(--a-info); }
.stat-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--a-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.stat-num { font-family: var(--ff-h); font-size: 1.6rem; font-weight: 800; color: var(--a-primary); line-height: 1; }
.stat-label { font-size: .8rem; color: #6c757d; margin-top: .2rem; }

/* === BUTTONS === */
.btn-a {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem 1.2rem;
    font-family: var(--ff-h); font-size: .85rem; font-weight: 600;
    border: 2px solid transparent; border-radius: 7px;
    cursor: pointer; transition: all .2s ease; white-space: nowrap;
    text-decoration: none;
}
.btn-a-primary { background: var(--a-primary); color: #fff; border-color: var(--a-primary); }
.btn-a-primary:hover { background: #0e7aaa; color: #fff; }
.btn-a-accent { background: var(--a-accent); color: #fff; border-color: var(--a-accent); }
.btn-a-accent:hover { background: #a8831a; color: #fff; }
.btn-a-outline { background: transparent; color: var(--a-primary); border-color: var(--a-primary); }
.btn-a-outline:hover { background: var(--a-primary); color: #fff; }
.btn-a-danger { background: var(--a-danger); color: #fff; border-color: var(--a-danger); }
.btn-a-danger:hover { background: #c0392b; color: #fff; }
.btn-a-success { background: var(--a-success); color: #fff; border-color: var(--a-success); }
.btn-a-sm { padding: .35rem .8rem; font-size: .78rem; }

/* === CATEGORY MANAGEMENT PANEL === */
.cat-mgmt-panel {
    background: var(--a-white);
    border: 1.5px solid var(--a-border);
    border-radius: var(--a-radius);
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.cat-mgmt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 1rem;
    background: var(--a-bg);
    border-bottom: 1px solid var(--a-border);
}
.cat-mgmt-title {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--a-text);
    font-family: var(--ff-h);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cat-mgmt-toggle {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .75rem;
    border: 1.5px solid var(--a-border);
    border-radius: 6px;
    background: var(--a-white);
    color: var(--a-primary);
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.cat-mgmt-toggle:hover, .cat-mgmt-toggle.active {
    background: var(--a-primary);
    border-color: var(--a-primary);
    color: #fff;
}
.cat-mgmt-toggle #catMgmtChevron { transition: transform .2s; }
.cat-mgmt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .85rem 1rem;
    align-items: center;
}
.cat-mgmt-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .6rem .3rem .75rem;
    background: #edf5fd;
    border: 1.5px solid #b3ddf2;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--a-primary);
    transition: opacity .2s, transform .2s;
}
.cat-mgmt-tag-name { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cat-mgmt-tag-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 16px;
    padding: 0 4px;
    background: var(--a-primary);
    color: #fff;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
}
.cat-mgmt-tag-del {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    background: rgba(231,76,60,.12);
    color: var(--a-danger);
    font-size: .85rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.cat-mgmt-tag-del:hover { background: var(--a-danger); color: #fff; }
.cat-mgmt-add-wrap {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #f8fbff;
    border: 1.5px dashed var(--a-border);
    border-radius: 50px;
    padding: .25rem .5rem .25rem .75rem;
}
.cat-mgmt-add-input {
    border: none;
    background: transparent;
    font-size: .8rem;
    font-family: var(--ff);
    color: var(--a-text);
    outline: none;
    width: 160px;
}
.cat-mgmt-add-input::placeholder { color: #b0c4d8; }
.cat-mgmt-add-btn {
    padding: .25rem .65rem;
    border-radius: 50px;
    border: none;
    background: var(--a-primary);
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.cat-mgmt-add-btn:hover { background: #0e7aaa; }
.cat-mgmt-msg { font-size: .75rem; font-weight: 600; min-width: 60px; }

/* === CONTENT TYPE TABS === */
.ctt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--a-border);
}
.ctt-tab {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: 8px;
    border: 1.5px solid var(--a-border);
    background: var(--a-white);
    color: var(--a-text);
    font-family: var(--ff);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
    white-space: nowrap;
}
.ctt-tab:hover {
    background: var(--a-bg);
    border-color: var(--a-primary);
    color: var(--a-primary);
    transform: translateY(-1px);
}
.ctt-tab--active {
    background: var(--a-primary);
    border-color: var(--a-primary);
    color: #fff;
    box-shadow: 0 3px 10px rgba(26,159,212,.28);
}
.ctt-tab--active:hover { background: #0e7aaa; border-color:#0e7aaa; color:#fff; transform:translateY(-1px); }
.ctt-tab--add {
    margin-left: auto;
    border-style: dashed;
    color: var(--a-primary);
}
.ctt-tab--add:hover { background:var(--a-primary); color:#fff; border-style:solid; }
.ctt-icon { font-size: 1rem; line-height:1; }
.ctt-label { }
.ctt-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50px;
    background: rgba(0,0,0,.1);
    font-size: .7rem;
    font-weight: 700;
}
.ctt-tab--active .ctt-count { background: rgba(255,255,255,.3); }
@media (max-width:640px) {
    .ctt-tab { font-size:.76rem; padding:.4rem .7rem; }
    .ctt-label { display:none; }
    .ctt-icon { font-size:1.15rem; }
    .ctt-tab--add .ctt-label { display:inline; }
}

/* === TABLE === */
.a-table { width: 100%; border-collapse: collapse; }
.a-table th { background: var(--a-bg); text-align: left; padding: .75rem 1rem; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; }
.a-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--a-border); font-size: .875rem; vertical-align: middle; }
.a-table tr:last-child td { border-bottom: none; }
.a-table tr:hover td { background: var(--a-bg); }
.table-wrap { overflow-x: auto; }

/* === FORMS === */
.a-form-group { margin-bottom: 1.25rem; }
.a-label { display: block; font-weight: 600; font-size: .85rem; color: var(--a-primary); margin-bottom: .4rem; }
.a-label small { color: #6c757d; font-weight: 400; margin-left: .25rem; }
.a-input, .a-select, .a-textarea {
    width: 100%; padding: .65rem 1rem;
    border: 2px solid var(--a-border); border-radius: 7px;
    font-family: var(--ff); font-size: .9rem; color: var(--a-text);
    background: #fff; transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.a-input:focus, .a-select:focus, .a-textarea:focus {
    outline: none; border-color: var(--a-primary);
    box-shadow: 0 0 0 3px rgba(26,159,212,.15);
}
.a-textarea { min-height: 120px; resize: vertical; }
.a-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }

/* === BADGE === */
.badge {
    display: inline-block; padding: .25rem .65rem;
    border-radius: 30px; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
}
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-info    { background: #d1ecf1; color: #0c5460; }
.badge-danger  { background: #f8d7da; color: #721c24; }

/* === ALERTS === */
.a-alert { padding: .85rem 1.25rem; border-radius: 7px; margin-bottom: 1.25rem; font-size: .875rem; font-weight: 500; }
.a-alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.a-alert-danger  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.a-alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* === UPLOAD ZONE === */
.upload-zone {
    border: 3px dashed var(--a-border); border-radius: var(--a-radius);
    padding: 2rem; text-align: center; cursor: pointer;
    transition: all .2s; background: var(--a-bg);
    position: relative;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--a-primary); background: rgba(26,159,212,.04); }
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-zone-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.upload-zone p { color: #6c757d; font-size: .875rem; margin: 0; }

/* === MEDIA GRID (upload preview) === */
.media-preview-grid { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.media-preview-item {
    position: relative; width: 110px; height: 100px;
    border-radius: 8px; overflow: hidden; border: 2px solid var(--a-border);
    background: var(--a-bg);
}
.media-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.media-preview-item .mp-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.6); color: #fff;
    font-size: .65rem; padding: .2rem .4rem; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}
.media-preview-item .mp-del {
    position: absolute; top: 4px; right: 4px;
    background: var(--a-danger); border: none; border-radius: 50%;
    width: 22px; height: 22px; color: #fff; font-size: .9rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

.room-admin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: .85rem;
}
.room-admin-gallery-item {
    border: 1px solid var(--a-border);
    border-radius: 8px;
    background: var(--a-bg);
    padding: .45rem;
}
.room-admin-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: .45rem;
}
.room-admin-gallery-item form { display: flex; justify-content: center; }

/* === HAMBURGER (mobile) === */
.sidebar-toggle {
    display: none; background: transparent; border: none;
    color: var(--a-primary); padding: .25rem;
    font-size: 1.5rem; cursor: pointer;
}

/* === VIDEO LIST === */
.video-list-item {
    display: flex; align-items: center; gap: 1rem;
    padding: .75rem 1rem; background: var(--a-bg);
    border-radius: 8px; border: 1px solid var(--a-border);
    margin-bottom: .5rem;
}
.video-list-item .vi-url { flex: 1; font-size: .85rem; color: var(--a-text); word-break: break-all; }
.vi-del-btn { background: var(--a-danger); border: none; color: #fff; border-radius: 6px; padding: .3rem .6rem; font-size: .78rem; cursor: pointer; }

/* === EDITOR TABS === */
.edit-tabs { display: flex; border-bottom: 2px solid var(--a-border); margin-bottom: 1.5rem; }
.edit-tab { padding: .65rem 1.2rem; font-weight: 600; font-size: .85rem; color: #6c757d; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .2s; }
.edit-tab:hover { color: var(--a-primary); }
.edit-tab.active { color: var(--a-primary); border-bottom-color: var(--a-primary); }
.edit-panel { display: none; }
.edit-panel.active { display: block; }

/* === STATUS RADIO CARDS === */
.status-radio-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: .85rem;
}
.status-radio-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .75rem 1rem;
    border: 2px solid var(--a-border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    background: var(--a-bg);
    user-select: none;
}
.status-radio-card:hover { border-color: var(--a-primary); background: rgba(26,159,212,.05); }
.status-radio-card input[type="radio"] { display: none; }
.status-radio-dot {
    width: 18px; height: 18px; min-width: 18px;
    border-radius: 50%;
    border: 2px solid var(--a-border);
    background: #fff;
    transition: border-color .15s, background .15s;
    position: relative;
}
.status-radio-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: transparent;
    transition: background .15s;
}
.status-radio-card.checked .status-radio-dot::after { background: currentColor; }
.status-radio-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; min-width: 32px; border-radius: 7px; background: rgba(26,159,212,.1); color: var(--a-primary); }
.status-radio-card.checked[data-status="draft"]     .status-radio-icon { background: rgba(108,117,125,.12); color: #495057; }
.status-radio-card.checked[data-status="published"] .status-radio-icon { background: rgba(46,204,113,.15);  color: #1a7a45; }
.status-radio-card.checked[data-status="scheduled"] .status-radio-icon { background: rgba(200,160,64,.15);  color: #966f0a; }
.status-radio-text { flex: 1; }
.status-radio-label { font-weight: 700; font-size: .88rem; color: var(--a-text); line-height: 1.2; }
.status-radio-desc  { font-size: .75rem; color: #6c757d; margin-top: .15rem; }

/* checked states */
.status-radio-card.checked[data-status="draft"] {
    border-color: #6c757d; background: rgba(108,117,125,.08);
    color: #495057;
}
.status-radio-card.checked[data-status="draft"] .status-radio-dot { border-color: #6c757d; color: #6c757d; }
.status-radio-card.checked[data-status="draft"] .status-radio-label { color: #495057; }

.status-radio-card.checked[data-status="published"] {
    border-color: var(--a-success); background: rgba(46,204,113,.08);
}
.status-radio-card.checked[data-status="published"] .status-radio-dot { border-color: var(--a-success); color: var(--a-success); }
.status-radio-card.checked[data-status="published"] .status-radio-label { color: #1a7a45; }

.status-radio-card.checked[data-status="scheduled"] {
    border-color: var(--a-accent); background: rgba(200,160,64,.08);
}
.status-radio-card.checked[data-status="scheduled"] .status-radio-dot { border-color: var(--a-accent); color: var(--a-accent); }
.status-radio-card.checked[data-status="scheduled"] .status-radio-label { color: #966f0a; }

.schedule-picker {
    background: rgba(200,160,64,.08);
    border: 1.5px solid var(--a-accent);
    border-radius: 9px;
    padding: .9rem 1rem .8rem;
    margin-top: -.25rem;
    margin-bottom: .5rem;
}
.schedule-picker .a-label { color: #966f0a; }

/* === CUSTOM JODIT TOOLBAR === */
.jct-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .65rem;
    margin-bottom: .5rem;
}
.jct-box {
    background: #fff;
    border: 1.5px solid var(--a-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.jct-box-title {
    display: flex; align-items: center; gap: .4rem;
    background: var(--a-primary);
    color: #fff;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .45rem .75rem;
}
.jct-box-body {
    padding: .6rem;
    display: flex; flex-direction: column; gap: .45rem;
    flex: 1;
}
.jct-sel {
    width: 100%; padding: .3rem .45rem;
    border: 1px solid var(--a-border); border-radius: 6px;
    font-size: .78rem; background: var(--a-bg); color: var(--a-text);
    cursor: pointer;
}
.jct-sel:focus { outline: none; border-color: var(--a-primary); }
.jct-row {
    display: flex; gap: .3rem; flex-wrap: wrap;
}
.jct-btn {
    flex: 1; min-width: 26px; height: 30px;
    padding: 0 .35rem;
    border: 1px solid var(--a-border); border-radius: 6px;
    background: var(--a-bg); color: var(--a-text);
    font-size: .78rem; font-weight: 600;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: .25rem;
    transition: background .13s, border-color .13s, color .13s;
    white-space: nowrap;
    line-height: 1;
}
.jct-btn:hover { background: var(--a-primary); color: #fff; border-color: var(--a-primary); }
.jct-btn b  { font-weight: 900; }
.jct-btn.jct-i { font-style: italic; }
.jct-btn.jct-u { text-decoration: underline; }
.jct-btn.jct-s { text-decoration: line-through; }
.jct-btn-full { flex: 1 0 100%; }
.jct-color {
    display: inline-flex; align-items: center; gap: .3rem;
    height: 30px; padding: 0 .5rem;
    border: 1px solid var(--a-border); border-radius: 6px;
    background: var(--a-bg); font-size: .75rem; font-weight: 600;
    cursor: pointer; flex: 1;
}
.jct-color input[type="color"] {
    width: 22px; height: 20px;
    border: none; padding: 0; background: transparent; cursor: pointer;
    border-radius: 3px;
}

/* badge scheduled */
.badge-scheduled { background: rgba(200,160,64,.18); color: #966f0a; border: 1px solid #c8a040; }

@media (max-width: 900px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .sidebar-toggle { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
    .admin-content { padding: 1rem; }
    .a-form-row { grid-template-columns: 1fr; }
}
