:root{
    --bg:#f5f5f7;
    --surface:#ffffff;
    --text:#1d1d1f;
    --muted:#6e6e73;
    --border:#d2d2d7;
    --green:#063b2f;
    --gold:#d6aa3f;
    --danger:#c62828;
}

*{
    box-sizing:border-box;
}

html,body{
    margin:0;
    min-height:100%;
    font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Segoe UI",Roboto,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
}

.login-page{
    min-height:100vh;
    background:
        radial-gradient(circle at top, rgba(214,170,63,.16), transparent 32%),
        linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%);
}

.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.login-card{
    width:100%;
    max-width:420px;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(24px);
    border:1px solid rgba(0,0,0,.08);
    border-radius:32px;
    padding:38px;
    box-shadow:
        0 30px 80px rgba(0,0,0,.10),
        0 1px 0 rgba(255,255,255,.9) inset;
}

.brand-mark{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(145deg,var(--green),#0d5a47);
    color:var(--gold);
    font-size:30px;
    font-weight:800;
    margin-bottom:24px;
    box-shadow:0 14px 30px rgba(6,59,47,.22);
}

h1{
    margin:0;
    font-size:34px;
    letter-spacing:-.8px;
    font-weight:800;
}

.subtitle{
    margin:8px 0 30px;
    color:var(--muted);
    font-size:17px;
}

label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:var(--muted);
}

input,select{
    width:100%;
    height:52px;
    border-radius:16px;
    border:1px solid var(--border);
    background:#fff;
    padding:0 16px;
    font-size:17px;
    outline:none;
    margin-bottom:18px;
}

input:focus,select:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 4px rgba(214,170,63,.18);
}

button{
    width:100%;
    height:52px;
    border:0;
    border-radius:16px;
    background:var(--text);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.18s ease;
}

button:hover{
    transform:translateY(-1px);
    background:#000;
}

.alert-error{
    background:#fff1f1;
    color:var(--danger);
    border:1px solid #ffd1d1;
    border-radius:14px;
    padding:12px 14px;
    margin-bottom:18px;
    font-weight:600;
}

@media(max-width:520px){
    .login-card{
        padding:28px;
        border-radius:26px;
    }

    h1{
        font-size:30px;
    }
}

.app-shell{
    width:min(1120px,92%);
    margin:0 auto;
    padding:34px 0;
}

.app-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:28px;
}

.eyebrow{
    margin:0 0 6px;
    color:var(--gold);
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:13px;
}

.logout-link{
    background:#fff;
    color:var(--text);
    border:1px solid var(--border);
    padding:12px 18px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.panel{
    background:rgba(255,255,255,.88);
    border:1px solid rgba(0,0,0,.08);
    border-radius:32px;
    padding:34px;
    box-shadow:0 24px 70px rgba(0,0,0,.08);
}

.hero-panel{
    margin-bottom:22px;
}

.scan-form{
    margin-top:26px;
}

.scan-row{
    display:grid;
    grid-template-columns:1fr 160px;
    gap:12px;
}

.scan-row input,
.scan-row button{
    margin-bottom:0;
}

.quick-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.quick-card{
    display:block;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:28px;
    color:var(--text);
    text-decoration:none;
    box-shadow:0 18px 50px rgba(0,0,0,.06);
    transition:.18s ease;
}

.quick-card:hover{
    transform:translateY(-2px);
    box-shadow:0 24px 70px rgba(0,0,0,.09);
}

.quick-card span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:15px;
    background:var(--green);
    color:var(--gold);
    font-size:25px;
    font-weight:800;
    margin-bottom:18px;
}

.quick-card strong{
    display:block;
    font-size:22px;
    letter-spacing:-.3px;
    margin-bottom:6px;
}

.quick-card small{
    color:var(--muted);
    font-size:15px;
}

@media(max-width:700px){
    .app-header{
        align-items:flex-start;
    }

    .scan-row,
    .quick-grid{
        grid-template-columns:1fr;
    }

    .panel{
        padding:26px;
        border-radius:26px;
    }
}

.big-number{
    font-size:64px;
    font-weight:900;
    letter-spacing:-2px;
    margin:18px 0 14px;
}

.big-number span{
    font-size:28px;
    color:var(--muted);
    font-weight:700;
}

.progress-bar{
    height:12px;
    width:100%;
    background:#ececef;
    border-radius:999px;
    overflow:hidden;
    margin:18px 0;
}

.progress-bar div{
    height:100%;
    background:linear-gradient(90deg,var(--green),var(--gold));
    border-radius:999px;
}

.success-text{
    color:#168a42;
    background:#eafff0;
    border:1px solid #bff0ce;
    padding:12px 14px;
    border-radius:16px;
    font-weight:700;
}

.mini-form{
    margin-top:24px;
    padding-top:20px;
    border-top:1px solid var(--border);
}

.history-box{
    margin-top:24px;
    padding-top:20px;
    border-top:1px solid var(--border);
}

.history-box h3{
    margin:0 0 14px;
    font-size:17px;
    letter-spacing:-.2px;
}

.history-item{
    background:#f5f5f7;
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px 14px;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:var(--text);
}

.status-warning{
    background:#fff8e6;
    color:#8a5a00;
    border:1px solid #f0d28a;
    padding:14px 16px;
    border-radius:16px;
    font-weight:700;
}

.history-box{
    margin-top:24px;
    padding-top:20px;
    border-top:1px solid var(--border);
}

.history-box h3{
    margin:0 0 14px;
    font-size:17px;
    letter-spacing:-.2px;
}

.history-item{
    background:#f5f5f7;
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px 14px;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:var(--text);
}

.status-warning{
    background:#fff8e6;
    color:#8a5a00;
    border:1px solid #f0d28a;
    padding:14px 16px;
    border-radius:16px;
    font-weight:700;
}

.table-wrap{
    overflow-x:auto;
    margin-top:18px;
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
}

th{
    text-align:left;
    color:var(--muted);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.06em;
    padding:14px;
    border-bottom:1px solid var(--border);
}

td{
    padding:14px;
    border-bottom:1px solid var(--border);
    font-size:14px;
    vertical-align:top;
}

tr:hover td{
    background:#f5f5f7;
}

.admin-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-bottom:24px;
}

.stat-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:24px;
    box-shadow:0 18px 50px rgba(0,0,0,.05);
}

.stat-card span{
    display:block;
    color:var(--muted);
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-card strong{
    font-size:34px;
    letter-spacing:-1px;
}

.admin-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.admin-section-card{
    display:block;
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:30px;
    color:var(--text);
    text-decoration:none;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
    transition:.18s ease;
}

.admin-section-card:hover{
    transform:translateY(-2px);
    box-shadow:0 28px 80px rgba(0,0,0,.09);
}

.admin-section-card span{
    color:var(--gold);
    font-weight:900;
    letter-spacing:.08em;
    font-size:13px;
}

.admin-section-card h2{
    margin:12px 0 8px;
    font-size:28px;
    letter-spacing:-.6px;
}

.admin-section-card p{
    margin:0;
    color:var(--muted);
    font-size:16px;
    line-height:1.5;
}

@media(max-width:900px){
    .admin-stats,
    .admin-grid{
        grid-template-columns:1fr;
    }
}

.badge-active{
    display:inline-block;
    background:#e9fff0;
    color:#117a3d;
    border:1px solid #bce7c8;
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.badge-inactive{
    display:inline-block;
    background:#fff1f1;
    color:#b42323;
    border:1px solid #ffd0d0;
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.table-button{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:10px 14px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.form-layout{
    display:flex;
    justify-content:center;
}

.form-panel{
    width:100%;
    max-width:720px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(24px);
    border:1px solid rgba(0,0,0,.08);
    border-radius:34px;
    padding:38px;
    box-shadow:0 30px 80px rgba(0,0,0,.08);
}

.success-banner{
    background:#e9fff0;
    color:#117a3d;
    border:1px solid #bce7c8;
    padding:16px 18px;
    border-radius:18px;
    font-weight:700;
    margin-bottom:20px;
}

.admin-card-form{
    max-width:520px;
    margin-bottom:24px;
}

.admin-card-form .form-panel{
    max-width:520px;
    padding:28px;
    border-radius:28px;
}

.admin-card-form input{
    margin-bottom:14px;
}

.admin-card-form button{
    margin-bottom:0;
}

.card-table-section{
    margin-top:24px;
}

.admin-body{
    background:#f7f8f7;
    margin:0;
}

.admin-layout{
    min-height:100vh;
    display:grid;
    grid-template-columns:260px 1fr;
}

.sidebar{
    background:linear-gradient(180deg,#073f2f 0%,#005237 100%);
    color:white;
    padding:26px 18px;
    position:fixed;
    left:0;
    top:0;
    bottom:0;
    width:260px;
    box-shadow:20px 0 60px rgba(0,0,0,.12);
}

.sidebar-logo img{
    width:190px;
    height:auto;
    display:block;
    margin-bottom:42px;
}

.sidebar-title{
    color:rgba(255,255,255,.65);
    text-transform:uppercase;
    font-size:12px;
    font-weight:800;
    letter-spacing:.06em;
    margin:0 0 18px 12px;
}

.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.sidebar-menu a{
    color:white;
    text-decoration:none;
    padding:15px 18px;
    border-radius:12px;
    font-weight:700;
    display:block;
    opacity:.9;
}

.sidebar-menu a:hover,
.sidebar-menu a.active{
    background:rgba(255,255,255,.16);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}

.sidebar-bottom{
    display:none;
}

.admin-main{
    grid-column:2;
    min-height:100vh;
}

.admin-topbar{
    height:78px;
    background:linear-gradient(90deg,#005237,#063b2f);
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding:0 34px;
    color:white;
}

.admin-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.admin-user span{
    display:block;
    font-size:13px;
    color:rgba(255,255,255,.8);
}

.admin-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.admin-content{
    padding:34px;
}

.page-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:28px;
}

.page-head h1{
    font-size:36px;
    margin:0 0 8px;
    letter-spacing:-1px;
}

.page-head p{
    margin:0;
    color:#6e6e73;
}

.back-button{
    background:#eef8ef;
    color:#236b38;
    border:1px solid #cfe8d3;
    padding:13px 18px;
    border-radius:10px;
    text-decoration:none;
    font-weight:800;
}

.kpi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:28px;
}

.kpi-card{
    background:white;
    border:1px solid #e3e5e3;
    border-radius:14px;
    padding:22px;
    display:flex;
    gap:18px;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.kpi-card::after{
    content:"";
    width:4px;
    height:70%;
    background:#005237;
    position:absolute;
    right:18px;
    top:15%;
    border-radius:999px;
}

.kpi-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#e7f4e8;
    color:#26733a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
}

.kpi-card span{
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
    color:#3b3b3f;
    letter-spacing:.04em;
}

.kpi-card strong{
    display:block;
    font-size:34px;
    margin:2px 0;
}

.kpi-card p{
    margin:0;
    color:#1f6f39;
    font-size:13px;
    font-weight:700;
}

.admin-box{
    background:white;
    border:1px solid #e3e5e3;
    border-radius:14px;
    padding:26px;
    margin-bottom:22px;
    box-shadow:0 12px 34px rgba(0,0,0,.055);
}

.box-title-row{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
}

.box-title-row h2{
    margin:0 0 4px;
    font-size:22px;
}

.box-title-row p{
    margin:0;
    color:#6e6e73;
}

.plus-icon,
.list-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    border:3px solid #38a34a;
    color:#38a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
}

.list-icon{
    border-radius:10px;
    font-size:22px;
}

.card-add-form{
    display:grid;
    grid-template-columns:1fr 260px;
    gap:18px;
    align-items:end;
}

.card-add-form label{
    color:#1d1d1f;
    font-weight:800;
}

.card-add-form input{
    height:48px;
    border:1px solid #d9dce0;
    border-radius:8px;
    padding:0 14px;
    font-size:15px;
    width:100%;
    margin:8px 0 0;
}

.card-add-form button{
    height:48px;
    border:0;
    border-radius:8px;
    background:#005237;
    color:white;
    font-weight:900;
    font-size:15px;
    cursor:pointer;
    width:100%;
}

.modern-table-wrap{
    overflow-x:auto;
}

.modern-table{
    width:100%;
    border-collapse:collapse;
    border:1px solid #e3e5e3;
    border-radius:10px;
    overflow:hidden;
}

.modern-table th{
    background:#fafafa;
    text-align:left;
    padding:16px 18px;
    font-size:12px;
    text-transform:uppercase;
    color:#303033;
    letter-spacing:.04em;
}

.modern-table td{
    padding:16px 18px;
    border-top:1px solid #e7e7e7;
    color:#3b3b3f;
    font-size:15px;
}

.status-pill{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}

.status-pill::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
}

.status-pill.active{
    background:#e9f8ea;
    color:#2c7a38;
    border:1px solid #ccefd0;
}

.status-pill.active::before{
    background:#59c564;
}

.status-pill.free{
    background:#fff6df;
    color:#9a6b00;
    border:1px solid #f0db9a;
}

.status-pill.free::before{
    background:#e8bd2d;
}

@media(max-width:900px){
    .admin-layout{
        display:block;
    }

    .sidebar{
        position:relative;
        width:100%;
        min-height:auto;
    }

    .sidebar-bottom{
        display:none;
    }

    .admin-main{
        grid-column:auto;
    }

    .kpi-grid,
    .card-add-form{
        grid-template-columns:1fr;
    }

    .page-head{
        flex-direction:column;
        gap:16px;
    }
}
.admin-dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.dashboard-tile{
    background:white;
    border:1px solid #e3e5e3;
    border-radius:16px;
    padding:30px;
    text-decoration:none;
    color:#1d1d1f;
    box-shadow:0 12px 34px rgba(0,0,0,.055);
    transition:.18s ease;
}

.dashboard-tile:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 60px rgba(0,0,0,.09);
}

.dashboard-tile span{
    color:#d6aa3f;
    font-size:13px;
    font-weight:900;
    letter-spacing:.08em;
}

.dashboard-tile h2{
    font-size:28px;
    margin:12px 0 8px;
    letter-spacing:-.6px;
}

.dashboard-tile p{
    margin:0;
    color:#6e6e73;
    line-height:1.5;
}

@media(max-width:900px){
    .admin-dashboard-grid{
        grid-template-columns:1fr;
    }
}

.single-kpi{
    grid-template-columns:360px;
}

.small-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#005237;
    color:white;
    padding:9px 14px;
    border-radius:8px;
    font-size:13px;
    font-weight:900;
    text-decoration:none;
}

.small-action:hover{
    background:#073f2f;
}

@media(max-width:900px){
    .single-kpi{
        grid-template-columns:1fr;
    }
}

.admin-two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-bottom:22px;
}

.admin-form input,
.admin-form select{
    height:48px;
    border:1px solid #d9dce0;
    border-radius:8px;
    padding:0 14px;
    font-size:15px;
    width:100%;
    margin:8px 0 16px;
}

.admin-form button{
    height:48px;
    border:0;
    border-radius:8px;
    background:#005237;
    color:white;
    font-weight:900;
    font-size:15px;
    cursor:pointer;
    width:100%;
}

.operator-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.operator-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    background:#f7f8f7;
    border:1px solid #e3e5e3;
    border-radius:12px;
    padding:14px 16px;
}

.operator-item strong{
    display:block;
    font-size:16px;
}

.operator-item span{
    display:block;
    color:#6e6e73;
    font-size:13px;
    font-weight:800;
    margin-top:3px;
}

.operator-item em{
    font-style:normal;
    font-weight:900;
    color:#005237;
}

@media(max-width:900px){
    .admin-two-col{
        grid-template-columns:1fr;
    }
}
.topbar-left{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1;
}

.topbar-title{
    color:white;
}

.topbar-title strong{
    display:block;
    font-size:22px;
    font-weight:900;
    letter-spacing:-.5px;
}

.topbar-title span{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.72);
    font-size:13px;
    font-weight:600;
}

.reception-scan-box{
    margin-bottom:24px;
}

.reception-link-card{
    text-decoration:none;
    color:#1d1d1f;
}

.customer-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:22px;
}

.customer-data-card{
    background:white;
    border:1px solid #e3e5e3;
    border-radius:14px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.customer-data-card span{
    display:block;
    color:#6e6e73;
    font-size:13px;
    font-weight:800;
    margin-bottom:8px;
}

.customer-data-card strong{
    font-size:17px;
    line-height:1.4;
}

.customer-big-number{
    font-size:62px;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:18px;
}

.customer-big-number span{
    font-size:28px;
    color:#6e6e73;
}

.customer-progress{
    height:14px;
    border-radius:999px;
    overflow:hidden;
    background:#ececec;
    margin-bottom:20px;
}

.customer-progress div{
    height:100%;
    background:linear-gradient(90deg,#005237,#38a34a);
}

.green-button{
    height:48px;
    border:0;
    border-radius:8px;
    background:#005237;
    color:white;
    font-weight:900;
    font-size:15px;
    cursor:pointer;
    width:100%;
}

.history-list{
    margin-top:24px;
}

.history-modern-item{
    display:flex;
    justify-content:space-between;
    gap:16px;
    background:#f7f8f7;
    border:1px solid #e3e5e3;
    border-radius:12px;
    padding:14px 16px;
    margin-bottom:10px;
}

.history-modern-item strong{
    color:#005237;
}

.history-modern-item span{
    color:#6e6e73;
    font-size:14px;
}

.mini-description{
    color:#6e6e73;
    margin-bottom:18px;
}

.mini-load-form{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #e7e7e7;
}

.mini-load-form input{
    margin:10px 0 14px;
}

@media(max-width:900px){

    .customer-info-grid{
        grid-template-columns:1fr;
    }

}

.modern-customer-form{
    margin-top:10px;
}

.modern-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
}

.modern-customer-form label{
    display:block;
    font-size:14px;
    font-weight:800;
    margin-bottom:8px;
    color:#1d1d1f;
}

.modern-customer-form input{
    width:100%;
    height:50px;
    border:1px solid #d9dce0;
    border-radius:10px;
    padding:0 14px;
    font-size:15px;
    background:white;
}

.full-form-row{
    margin-bottom:20px;
}

@media(max-width:900px){

    .modern-form-grid{
        grid-template-columns:1fr;
    }

}

.customer-header-card{
    background:white;
    border:1px solid #e3e5e3;
    border-radius:18px;
    padding:26px;
    margin-bottom:24px;
    box-shadow:0 12px 34px rgba(0,0,0,.055);
}

.customer-header-card h1{
    margin:0 0 10px;
    font-size:34px;
    letter-spacing:-1px;
}

.customer-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:16px;
}

.customer-meta span{
    background:#f7f8f7;
    border:1px solid #e3e5e3;
    border-radius:999px;
    padding:9px 14px;
    font-size:14px;
    font-weight:700;
    color:#333;
}

.customer-modules{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.module-card{
    background:white;
    border:1px solid #e3e5e3;
    border-radius:18px;
    padding:28px;
    box-shadow:0 12px 34px rgba(0,0,0,.055);
}

.module-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:24px;
}

.module-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    border:3px solid #38a34a;
    color:#38a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:900;
}

.module-top h2{
    margin:0;
    font-size:28px;
    letter-spacing:-.5px;
}

.module-top p{
    margin:4px 0 0;
    color:#6e6e73;
    font-size:16px;
}

.module-number{
    font-size:68px;
    font-weight:900;
    letter-spacing:-2px;
    margin:10px 0 16px;
}

.module-number span{
    font-size:30px;
    color:#6e6e73;
}

.module-note{
    color:#6e6e73;
    font-weight:700;
    margin-bottom:18px;
}

.primary-green{
    width:100%;
    height:52px;
    border:0;
    border-radius:12px;
    background:#005237 !important;
    color:white !important;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    box-shadow:none;
}

.primary-green:hover{
    background:#073f2f !important;
}

.history-clean{
    margin-top:24px;
    border-top:1px solid #e3e5e3;
    padding-top:18px;
}

.history-clean-title{
    font-size:14px;
    font-weight:900;
    color:#6e6e73;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:12px;
}

.history-row{
    display:flex;
    justify-content:space-between;
    gap:14px;
    background:#f7f8f7;
    border:1px solid #e3e5e3;
    border-radius:12px;
    padding:12px 14px;
    margin-bottom:10px;
    font-size:14px;
}

.history-row strong{
    color:#005237;
}

.history-row span{
    color:#6e6e73;
    font-weight:700;
}

.load-package-box{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #e3e5e3;
}

.load-package-box label{
    font-weight:900;
    color:#1d1d1f;
}

.load-package-box input{
    width:100%;
    height:48px;
    border:1px solid #d9dce0;
    border-radius:10px;
    padding:0 14px;
    margin:10px 0 14px;
}

@media(max-width:1000px){
    .customer-modules{
        grid-template-columns:1fr;
    }
}

.customer-mobile-body{
    margin:0;
    min-height:100vh;
    background:
        linear-gradient(180deg,#005237 0%,#063b2f 42%,#f7f8f7 42%,#f7f8f7 100%);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

.customer-login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.customer-login-card{
    width:100%;
    max-width:420px;
    background:white;
    border-radius:26px;
    padding:30px;
    box-shadow:0 24px 70px rgba(0,0,0,.18);
    border:1px solid #e3e5e3;
}

.customer-logo{
    width:190px;
    display:block;
    margin:0 auto 28px;
}

.customer-login-card h1{
    margin:0 0 10px;
    font-size:32px;
    letter-spacing:-1px;
    text-align:center;
}

.customer-login-card p{
    color:#6e6e73;
    text-align:center;
    line-height:1.5;
    margin-bottom:26px;
}

.customer-login-card label{
    display:block;
    font-weight:900;
    margin-bottom:8px;
    color:#1d1d1f;
}

.customer-login-card input{
    width:100%;
    height:52px;
    border:1px solid #d9dce0;
    border-radius:12px;
    padding:0 14px;
    font-size:16px;
    margin-bottom:16px;
}

.customer-app-wrapper{
    padding:22px;
    max-width:520px;
    margin:0 auto;
}

.customer-app-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:26px;
}

.customer-logo-small{
    width:150px;
}

.customer-logout{
    color:white;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
}

.digital-card{
    margin-bottom:24px;
}

.digital-card-image{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 24px 70px rgba(0,0,0,.22);
}

.digital-card-placeholder{
    height:220px;
    border-radius:24px;
    background:linear-gradient(135deg,#005237,#063b2f);
    color:white;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 24px 70px rgba(0,0,0,.22);
}

.digital-card-placeholder strong{
    font-size:28px;
    font-weight:900;
    letter-spacing:-1px;
}

.digital-card-placeholder span{
    margin-top:8px;
    color:rgba(255,255,255,.72);
}

.customer-user-box{
    background:white;
    border-radius:22px;
    padding:24px;
    margin-bottom:22px;
    box-shadow:0 14px 40px rgba(0,0,0,.08);
}

.customer-user-box h1{
    margin:0 0 10px;
    font-size:30px;
    letter-spacing:-1px;
}

.customer-user-box p{
    margin:0;
    color:#6e6e73;
    font-size:15px;
}

.customer-balance-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.customer-balance-card{
    background:white;
    border-radius:22px;
    padding:22px;
    box-shadow:0 14px 40px rgba(0,0,0,.08);
}

.balance-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#005237;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:18px;
}

.customer-balance-card span{
    display:block;
    color:#6e6e73;
    font-size:14px;
    font-weight:800;
    margin-bottom:10px;
}

.customer-balance-card strong{
    display:block;
    font-size:42px;
    letter-spacing:-1px;
    font-weight:900;
    margin-bottom:6px;
}

.customer-balance-card small{
    color:#6e6e73;
    font-size:13px;
}

.history-modern-item-with-action{
    align-items:center;
}

.void-button{
    width:auto;
    height:34px;
    padding:0 12px;
    border:0;
    border-radius:8px;
    background:#b42323;
    color:white;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
}
.customer-history-box{
    margin-top:24px;
    background:white;
    border-radius:18px;
    padding:20px;
}

.empty-history{
    color:#777;
    font-size:14px;
    padding-top:10px;
}

.operation-note{
    display:block;
    margin-top:4px;
    font-size:12px;
    color:#666;
}