*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    background:#f4f6f9;
    padding:15px;
    color:#222;
}

.card{
    width:100%;
    max-width:700px;
    margin:auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    padding:15px;
}

.card h2{
    margin-bottom:15px;
    font-size:20px;
    font-weight:700;
}

table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

thead tr{
    background:#f8f8f8;
}

th{
    padding:10px 2px;
    font-size:11px;
    color:#666;
    font-weight:600;
    border-bottom:2px solid #ddd;
}

td{
    padding:12px 2px;
    font-size:12px;
    text-align:center;
    border-bottom:1px solid #eee;
}

th:nth-child(2),
td:nth-child(2){
    width:120px;
    text-align:left;
}

.team-cell{
    display:flex;
    align-items:center;
    gap:6px;
}

.team-cell img{
    width:20px;
    height:20px;
    object-fit:contain;
    flex-shrink:0;
}

.team-cell span{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.qualify{
    border-left:4px solid #1a73e8;
}

/* PTS is always the last column */
th:last-child, td:last-child{
    font-weight:800;
    color:#000;
}

tbody tr:hover{
    background:#fafafa;
}

.card + .card{
    margin-top:15px;
}

.champion-banner{
    background:linear-gradient(135deg, #f2b705, #d4930a);
    color:#2a1e00;
    text-align:center;
    font-size:16px;
    font-weight:800;
    padding:14px;
}

/* ---- Group stage fixtures (uses the same .leg card as the knockout bracket) ---- */
.fixtures{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.fixtures .leg{
    cursor:pointer;
}

.fixtures .leg:hover{
    background:#fafafa;
}

/* ---- Top scorers ---- */
.top-scorers{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.scorer-row{
    display:flex;
    align-items:center;
    gap:12px;
    padding:8px 4px;
    border-bottom:1px solid #eee;
}

.scorer-row:last-child{
    border-bottom:none;
}

.scorer-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#eef1f6;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
    font-size:20px;
}

.scorer-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.scorer-info{
    flex:1;
    min-width:0;
}

.scorer-name{
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.scorer-team{
    font-size:12px;
    color:#888;
    margin-top:1px;
}

.scorer-goals{
    flex:0 0 auto;
    font-size:18px;
    font-weight:800;
    color:#1a73e8;
    min-width:24px;
    text-align:right;
}

.card-counts{
    flex:0 0 auto;
    display:flex;
    gap:8px;
}

.card-count{
    font-size:14px;
    font-weight:700;
}

/* ---- Squad tab (public page) ---- */
.squad-team-tabs{
    display:flex;
    gap:8px;
    margin-bottom:14px;
    flex-wrap:wrap;
}

.squad-team-btn{
    padding:8px 14px;
    border:1px solid #ddd;
    border-radius:20px;
    background:#fff;
    font-size:13px;
    font-weight:600;
    color:#666;
    cursor:pointer;
}

.squad-team-btn.active{
    background:#1a73e8;
    border-color:#1a73e8;
    color:#fff;
}

/* ---- Tabs ---- */
.tabs{
    display:flex;
    max-width:700px;
    margin:0 auto 15px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    overflow:hidden;
}

.tab-btn{
    flex:1;
    padding:14px 8px;
    border:none;
    background:none;
    font-size:14px;
    font-weight:600;
    color:#888;
    cursor:pointer;
    border-bottom:3px solid transparent;
}

.tab-btn.active{
    color:#1a73e8;
    border-bottom-color:#1a73e8;
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

/* ---- Match card (static, shown inline on Overview tab) ---- */
.match-card{
    background:#1c1c28;
    border-radius:12px;
    padding:22px 20px;
    color:#fff;
    margin:-15px;
}

.mc-header{
    margin-bottom:26px;
}

.mc-competition{
    font-size:16px;
    font-weight:700;
}

.mc-round{
    font-size:13px;
    color:#9aa0a6;
    margin-top:2px;
}

.mc-body{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
}

.mc-team{
    flex:1 1 0;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    text-align:center;
    min-width:0;
}

.mc-logo{
    width:64px;
    height:64px;
    border-radius:16px;
    background-color:#2a2a3a;
    background-size:60%;
    background-position:center;
    background-repeat:no-repeat;
}

.mc-team-name{
    font-size:15px;
    font-weight:700;
}

.mc-center{
    flex:0 0 auto;
    min-width:80px;
    text-align:center;
}

.mc-status{
    font-size:14px;
    font-weight:700;
    color:#e2e2e6;
}

.mc-score{
    font-size:28px;
    font-weight:800;
}

.mc-score-num{
    color:#fff;
}

.mc-score-loser{
    color:#8a8a94;
}

.mc-pen-sup{
    font-size:14px;
    font-weight:700;
    color:#9aa0a6;
    vertical-align:super;
}

.mc-venue{
    margin-top:22px;
    padding-top:14px;
    border-top:1px solid #33333f;
    text-align:center;
    font-size:12px;
    color:#9aa0a6;
}

.mc-scorers{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:8px;
    margin-top:16px;
}

.mc-scorers-col{
    flex:1 1 0;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.mc-scorers-col--away{
    text-align:right;
}

.mc-scorer{
    font-size:12px;
    color:#d5d5dc;
}

.mc-scorer--og{
    color:#f28b82;
}

.mc-card-line{
    font-size:11px;
    color:#d5d5dc;
}

.mc-scorers-ball{
    flex:0 0 auto;
    font-size:18px;
    padding-top:1px;
}

.mc-clock{
    font-size:12px;
    color:#9aa0a6;
    margin-top:2px;
    font-variant-numeric:tabular-nums;
}

.mc-status.live{
    color:#ff5757;
}

.live-badge{
    font-size:10px;
    font-weight:700;
    color:#e0342a;
    margin-left:4px;
    white-space:nowrap;
}

/* ---- Bracket ---- */
.bracket{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.bracket-col{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.leg{
    border:1px solid #eee;
    border-radius:8px;
    padding:10px;
}

.leg-label{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    font-size:11px;
    font-weight:700;
    color:#888;
    text-transform:uppercase;
    margin-bottom:8px;
}

.leg-date{
    font-weight:600;
    text-transform:none;
    color:#aaa;
    white-space:nowrap;
}

.leg-team{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:4px 0;
    font-size:13px;
}

.leg-team.winner{
    font-weight:700;
    color:#1a73e8;
}

.leg-team .score{
    font-weight:700;
}

.leg-pending{
    font-size:12px;
    color:#aaa;
    font-style:italic;
}

.leg-pens{
    font-size:11px;
    color:#888;
    text-align:right;
    margin-top:4px;
}

/* ══════════════════════════════════════════════
   ADMIN PANEL — auth wall, app shell, controls
   ══════════════════════════════════════════════ */

.admin-body{
    padding:0;
    background:#eef1f6;
}

.hidden{ display:none; }

/* ---- Auth wall ---- */
#authWall{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px 16px;
}

.auth-view{ display:none; width:100%; }
.auth-view.active{ display:flex; justify-content:center; }

.auth-card{
    width:100%;
    max-width:380px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    padding:28px 24px;
}

.auth-card--center{
    text-align:center;
}

.auth-brand{
    font-size:24px;
    font-weight:800;
    color:#1a73e8;
    letter-spacing:.5px;
}

.auth-tagline{
    font-size:13px;
    color:#888;
    margin-bottom:20px;
}

.field-group{
    margin-bottom:12px;
}

.field-row{
    display:flex;
    gap:10px;
}

.field-row .field-group{
    flex:1;
}

.field-label{
    display:block;
    font-size:12px;
    font-weight:600;
    color:#555;
    margin-bottom:4px;
}

.field-group input, .field-row input,
#authWall select, #appShell select{
    width:100%;
    padding:11px 12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
}

.auth-error{
    color:#d93025;
    font-size:12px;
    min-height:14px;
    margin:6px 0;
}

.auth-switch{
    font-size:12px;
    color:#888;
    text-align:center;
    margin-top:14px;
}

.auth-switch a{
    color:#1a73e8;
    font-weight:600;
    cursor:pointer;
}

.pending-icon{
    font-size:40px;
    margin-bottom:6px;
}

.pending-msg{
    font-size:13px;
    color:#666;
    margin:12px 0 18px;
    line-height:1.5;
}

/* ---- Avatar pickers (register / profile / player) ---- */
.reg-profile-row{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

.reg-avatar-wrap{
    position:relative;
    width:56px;
    height:56px;
    flex-shrink:0;
}

.reg-avatar-img{
    width:56px;
    height:56px;
    border-radius:50%;
    object-fit:cover;
    display:none;
}

.reg-avatar-placeholder{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#eef1f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.btn-outline-sm{
    display:inline-block;
    padding:6px 12px;
    border:1px solid #1a73e8;
    color:#1a73e8;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
}

.pic-status{
    font-size:11px;
    color:#1a8e3e;
    margin-top:4px;
}

/* ---- App shell header ---- */
.admin-header{
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.06);
    padding:12px 16px;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    position:sticky;
    top:0;
    z-index:20;
}

.admin-header .brand{
    font-size:17px;
    font-weight:800;
    color:#1c1c28;
    white-space:nowrap;
}

.admin-header .brand span{
    color:#1a73e8;
}

.match-select{
    flex:1 1 160px;
    min-width:0;
    padding:8px 10px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:13px;
}

.profile-chip{
    display:flex;
    align-items:center;
    gap:6px;
    padding:6px 10px;
    border-radius:20px;
    background:#f4f6f9;
    cursor:pointer;
    position:relative;
    white-space:nowrap;
}

.chip-avatar{
    width:26px;
    height:26px;
    border-radius:50%;
    object-fit:cover;
}

.chip-initial{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#1a73e8;
    color:#fff;
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.chip-name{
    font-size:13px;
    font-weight:600;
    max-width:80px;
    overflow:hidden;
    text-overflow:ellipsis;
}

.chip-caret{
    font-size:10px;
    color:#999;
}

.profile-menu{
    position:absolute;
    top:calc(100% + 8px);
    right:16px;
    width:220px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 6px 24px rgba(0,0,0,.15);
    padding:8px;
    z-index:30;
}

.menu-header{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px;
}

.menu-avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    object-fit:cover;
}

.menu-avatar-initial{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#1a73e8;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu-name{
    font-size:13px;
    font-weight:700;
}

.menu-role{
    font-size:11px;
    color:#888;
}

.menu-divider{
    height:1px;
    background:#eee;
    margin:6px 0;
}

.menu-item{
    display:block;
    width:100%;
    text-align:left;
    padding:9px 8px;
    border:none;
    background:none;
    font-size:13px;
    border-radius:8px;
    cursor:pointer;
}

.menu-item:hover{
    background:#f4f6f9;
}

.menu-item--danger{
    color:#d93025;
}

.role-banner{
    background:#fff6e0;
    color:#8a6600;
    font-size:12px;
    text-align:center;
    padding:8px 12px;
}

.page{
    max-width:700px;
    margin:16px auto;
    padding:0 15px 40px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* ---- Scoreboard ---- */
.scoreboard{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.team-col{
    flex:1;
    text-align:center;
    min-width:0;
}

.sb-logo{
    height:40px;
    margin:0 auto 6px;
}

.team-logo-sb{
    width:40px;
    height:40px;
    object-fit:contain;
}

.team-logo-sb-fallback{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#eef1f6;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin:0 auto;
}

.team-name-sb{
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.score-num{
    font-size:28px;
    font-weight:800;
    margin-top:4px;
}

.center-col{
    flex:0 0 auto;
    text-align:center;
    min-width:90px;
}

.status-badge{
    display:inline-block;
    padding:3px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    background:#eef1f6;
    color:#555;
}

.status-badge.status--live,
.status-badge.status--et1,
.status-badge.status--et2{
    background:#fdeaea;
    color:#d93025;
}

.status-badge.status--ft{
    background:#e7f6ec;
    color:#1a8e3e;
}

.clock{
    font-size:15px;
    font-weight:700;
    margin-top:4px;
}

.pen-score-line{
    margin-top:4px;
    font-weight:700;
    font-size:12px;
    color:#666;
}

.match-meta{
    margin-top:14px;
    padding-top:12px;
    border-top:1px solid #eee;
    font-size:12px;
    color:#888;
    text-align:center;
}

/* ---- Match / ET controls ---- */
.controls{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
}

.ctrl-btn{
    padding:12px;
    border:none;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    color:#fff;
    cursor:pointer;
}

.ctrl-btn--start{ background:#1a8e3e; }
.ctrl-btn--ht{ background:#e6a700; }
.ctrl-btn--resume{ background:#1a73e8; }
.ctrl-btn--ft{ background:#d93025; }

.card--danger{
    border:1px solid #f3c6c2;
}

.card--danger h2{
    color:#d93025;
}

.db-warning{
    font-size:12px;
    color:#888;
    margin-bottom:12px;
}

.btn-purple, .btn-danger{
    display:block;
    width:100%;
    padding:11px;
    border:none;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    color:#fff;
    cursor:pointer;
    margin-bottom:8px;
}

.btn-purple{ background:#7c4dff; }
.btn-danger{ background:#d93025; }

.seed-status{
    font-size:12px;
    color:#888;
    min-height:14px;
}

.seed-status--ok{ color:#1a8e3e; font-weight:600; }
.seed-status--err{ color:#d93025; font-weight:600; }

/* ---- Team label pills / event grid ---- */
.team-labels{
    display:flex;
    gap:8px;
    margin-bottom:12px;
}

.team-label-pill{
    flex:1;
    text-align:center;
    padding:6px;
    border-radius:8px;
    background:#f4f6f9;
    font-size:12px;
    font-weight:700;
}

.event-grid{
    display:grid;
    grid-template-columns:70px 1fr 1fr;
    gap:8px;
    align-items:center;
    margin-bottom:10px;
}

.ev-row-label{
    font-size:11px;
    font-weight:700;
    color:#888;
}

.ev-btn{
    padding:10px 6px;
    border:none;
    border-radius:8px;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    color:#fff;
}

.ev-btn--goal{ background:#1a8e3e; }
.ev-btn--og{ background:#8b3a3a; }
.ev-btn--assist{ background:#1a73e8; }
.ev-btn--yellow{ background:#e6a700; color:#3a2c00; }
.ev-btn--red{ background:#d93025; }
.ev-btn--undo{ background:#888; }

.full-width{
    width:100%;
    margin-top:8px;
}

.pen-score-display{
    text-align:center;
    font-size:26px;
    font-weight:800;
    margin:6px 0;
}

.pen-sequence{
    display:flex;
    justify-content:space-between;
    font-size:16px;
    letter-spacing:2px;
    min-height:22px;
    margin-bottom:8px;
}

.ko-completed-msg{
    text-align:center;
    font-size:13px;
    color:#888;
    padding:10px 4px 2px;
}

.event-log{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-top:8px;
}

.event-row{
    padding:6px 8px;
    border:1px solid #eee;
    border-radius:6px;
    font-size:12px;
}

.event-row em{
    color:#999;
    font-style:normal;
}

/* ---- Squad management ---- */
.squad-form{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:14px 0;
    padding:14px;
    background:#f9fafc;
    border-radius:10px;
}

.pic-row{
    display:flex;
    align-items:center;
    gap:12px;
}

.pic-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#eef1f6;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
}

.pic-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:none;
}

.squad-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.squad-player-row{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px;
    border:1px solid #eee;
    border-radius:8px;
}

.squad-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#eef1f6;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
}

.squad-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.squad-info{ flex:1; min-width:0; }

.squad-name{
    font-size:13px;
    font-weight:700;
}

.squad-pos{
    font-size:11px;
    color:#888;
}

.squad-actions{
    display:flex;
    gap:6px;
}

.edit-btn, .remove-btn{
    padding:5px 10px;
    font-size:11px;
    border-radius:6px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
}

.remove-btn{
    color:#d93025;
    border-color:#f3c6c2;
}

.hint{
    font-size:12px;
    color:#999;
    font-style:italic;
    padding:10px 0;
}

/* ---- Bottom-sheet modals (squad picker / edit player / profile / admin panel) ---- */
.modal-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:50;
    align-items:flex-end;
    justify-content:center;
}

.modal-overlay.open{
    display:flex;
}

.picker-sheet, .admin-panel-sheet{
    width:100%;
    max-width:480px;
    background:#fff;
    border-radius:16px 16px 0 0;
    padding:10px 18px 20px;
    max-height:85vh;
    overflow-y:auto;
}

.picker-handle{
    width:40px;
    height:4px;
    background:#ddd;
    border-radius:2px;
    margin:6px auto 14px;
}

.picker-header{
    margin-bottom:12px;
}

.picker-title{
    font-size:16px;
    font-weight:800;
}

.picker-sub{
    font-size:12px;
    color:#888;
    margin-top:2px;
}

.picker-player-row{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 4px;
    border-bottom:1px solid #f0f0f0;
    cursor:pointer;
}

.picker-player-row:hover{
    background:#f9fafc;
}

.picker-avatar{
    width:38px;
    height:38px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.picker-avatar--empty{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef1f6;
}

.picker-player-name{
    font-size:13px;
    font-weight:700;
}

.picker-player-pos{
    font-size:11px;
    color:#888;
}

.picker-player-short{
    margin-left:auto;
    font-size:12px;
    color:#999;
}

.picker-cancel{
    width:100%;
    padding:12px;
    margin-top:10px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    font-weight:600;
    cursor:pointer;
}

.edit-player-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.edit-player-actions{
    display:flex;
    gap:8px;
    margin-top:6px;
}

.edit-player-actions button{
    flex:1;
}

/* ---- Admin panel (manage users) ---- */
.admin-user-list{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:10px;
}

.admin-user-row{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px;
    border:1px solid #eee;
    border-radius:8px;
    flex-wrap:wrap;
}

.admin-user-avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.admin-user-initial{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#1a73e8;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.admin-user-info{
    flex:1;
    min-width:120px;
}

.admin-user-name{
    font-size:13px;
    font-weight:700;
}

.admin-user-name em{
    font-weight:400;
    color:#999;
    font-style:normal;
}

.admin-user-email{
    font-size:11px;
    color:#888;
}

.admin-user-requested{
    font-size:10px;
    color:#999;
    margin-top:2px;
}

.admin-user-controls{
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:wrap;
}

.admin-role-select{
    padding:6px 8px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:11px;
    width:auto;
    margin-bottom:0;
}

.approve-btn{
    padding:6px 10px;
    border:none;
    border-radius:6px;
    background:#1a8e3e;
    color:#fff;
    font-size:11px;
    font-weight:700;
    cursor:pointer;
}

.role-badge{
    padding:3px 8px;
    border-radius:20px;
    font-size:10px;
    font-weight:700;
    background:#eef1f6;
    color:#555;
    white-space:nowrap;
}

.role-badge--admin{ background:#e8def8; color:#5e35b1; }
.role-badge--editor{ background:#e3f2fd; color:#1565c0; }
.role-badge--assistant{ background:#fff3e0; color:#e65100; }
.role-badge--viewer{ background:#eef1f6; color:#555; }
.role-badge--pending{ background:#fff6e0; color:#8a6600; }

/* ---- Shared buttons reused from public site ---- */
.save-btn{
    padding:11px;
    border:none;
    border-radius:8px;
    background:#1a73e8;
    color:#fff;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    width:100%;
    margin-top:6px;
}

.save-btn:hover{ background:#1558b0; }

.logout-btn{
    padding:10px 16px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

select{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    background:#fff;
    margin-bottom:10px;
}
