
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f4f6fb;
    min-height:100vh;
}

.login-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:30px;
}

.login-card{
    width:100%;
    max-width:400px;
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    box-shadow:
        0 10px 25px rgba(0,0,0,.05),
        0 20px 60px rgba(0,0,0,.08);
}

.logo-area{
    text-align:center;
    margin-bottom:7px;
}

.logo-kampus{
    height:80px;
    margin-bottom:10px;
}

.login-title{
    text-align:center;
    font-size:25px;
    font-weight:700;
    color:#111827;
    margin-top:15px;
}

.login-subtitle{
    text-align:center;
    color:#6b7280;
    margin-top:8px;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:18px;
}

.form-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#374151;
}

.form-control{
    width:100%;
    height:52px;
    border:1px solid #dbe2ea;
    border-radius:10px;
    padding:0 16px;
    font-size:15px;
    transition:.3s;
}

.form-control:focus{
    outline:none;
    border-color:#206BC4;
    box-shadow:0 0 0 4px rgba(32,107,196,.15);
}

.btn-login{
    width:100%;
    height:54px;
    border:none;
    border-radius:10px;
    background:#206BC4;
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.btn-login:hover{
    transform:translateY(-1px);
}

.alert-error{
    margin-top:15px;
    background:#fee2e2;
    color:#b91c1c;
    padding:12px;
    border-radius:10px;
    font-size:13px;
}

.footer-login{
    margin-top:25px;
    text-align:center;
    color:#6b7280;
    font-size:13px;
    line-height:1.7;
}

.version{
    font-weight:600;
    color:#206BC4;
}

@media(max-width:576px){

    .login-card{
        padding:25px;
        border-radius:20px;
    }

    .login-title{
        font-size:24px;
    }

    .logo-sistem{
        max-width:240px;
    }
}


.dashboard-container{
    max-width:1200px;
    margin:auto;
    padding:25px;
}

.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.dashboard-title{
    font-size:32px;
    font-weight:700;
    color:#111827;
}

.dashboard-subtitle{
	font-size:24px;
    font-weight:600;
    color:#111827;
    margin-top:1px;
}

.user-card{
    background:#fff;
    padding:15px 18px;
    border-radius:16px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);

    display:flex;
    align-items:center;
    gap:15px;
}

@media (max-width:768px){

    .user-card{
        width:100%;
        box-sizing:border-box;
    }

}

.user-name{
    font-weight:700;
}

.user-role{
    color:#6b7280;
    font-size:13px;
}

.welcome-card{
    background:#fff;
    border-radius:10px;
    padding:25px;
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:25px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);

}

.welcome-icon{
    font-size:40px;
}

.welcome-title{
    font-size:22px;
    font-weight:700;
}

.welcome-text{
    color:#6b7280;
    margin-top:5px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:25px;
}

.stat-card{
    background:#206BC4;
    color:#fff;
    border-radius:10px;
    padding:25px;
    position:relative;

}

.stat-icon{
    position:absolute;
    top:20px;
    right:20px;
    font-size:42px;
    opacity:.5;
}

.stat-number{
    font-size:36px;
    font-weight:700;
}

.stat-label{
    opacity:.9;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.profile-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.card-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.table-profile{
    width:100%;
}

.table-profile td{
    padding:8px 0;
}

.table-profile td:first-child{
    color:#6b7280;
    width:140px;
}

@media(max-width:768px){

    .dashboard-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .dashboard-grid{
        grid-template-columns:1fr;
    }

    .dashboard-title{
        font-size:24px;
    }
}


.dashboard-section{
    margin-bottom:25px;
}

.section-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.exam-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:20px;
}


.btn-primary{
    background:#206BC4;
}

.btn-success{
    background:#16a34a;
}

.btn-warning{
    background:#f59e0b;
}

.btn-info{
    background:#0ea5e9;
}

.btn-danger{
    background:#dc2626;
}

.btn-secondary{
    background:#94a3b8;
}

.empty-state{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    color:#6b7280;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.exam-card-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
}

.exam-code{
    font-size:12px;
    font-weight:700;
    color:#64748b;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:6px;
    text-decoration: underline;
}

.exam-date{
    font-size:16px;
    font-weight:600;
    color:#111827;
}

.exam-subject{
    font-size:18px;
    font-weight:700;
    line-height:1.35;

    min-height:72px;
}

.exam-meta{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
    color:#64748b;
}

.exam-meta i{
    width:18px;
    margin-top:2px;
    color:#206BC4;
}

.exam-badge{
    background:#dcfce7;
    color:#15803d;
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.section-subtitle{
    color:#6b7280;
    font-size:14px;
}

.semester-badge{
    background:#206BC4;
    color:#fff;
    padding:8px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
}


@media(max-width:768px){

.section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

}


.dashboard-footer{
    margin-top:40px;
    padding:25px 0;
    border-top:1px solid #e5e7eb;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-brand{
    font-size:16px;
    font-weight:700;
    color:#111827;
}

.footer-desc{
    margin-top:4px;
    color:#6b7280;
    font-size:13px;
}

.footer-right{
    text-align:right;
    color:#6b7280;
    font-size:13px;
}

.footer-version{
    margin-top:4px;
    color:#206BC4;
    font-weight:600;
}

@media(max-width:768px){

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        text-align:center;
    }

}


.exam-steps{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.step{
    flex:1;
    background:#fff;
    border-radius:16px;
    padding:15px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.step span{
    width:32px;
    height:32px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#e5e7eb;
    margin-bottom:8px;
}



.step.active{
    background:#206BC4;
    color:#fff;
}

.step.active span{
    background:#fff;
    color:#206BC4;
}

.exam-card{
    background:#fff;
    border-radius:10px;
    padding:25px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.exam-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.exam-info-grid label{
    display:block;
    color:#6b7280;
    margin-bottom:5px;
}

.info-alert{
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}

.warning{
    background:#fef3c7;
}

.alert-warning{
    margin-top:15px;
    background:#fef3c7;
    color:#b91c1c;
    padding:12px;
    border-radius:10px;
    font-size:13px;
}

.btn-primary,
.btn-success{
    width:100%;
    height:50px;
    border:none;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
}

.btn-primary{
    background:#206BC4;
    color:#fff;
}

.btn-success{
    background:#16a34a;
    color:#fff;
}

.upload-zone{
    border:2px dashed #dbe2ea;
    border-radius:16px;
    padding:40px;
    text-align:center;
    margin-bottom:20px;
}

.timeline-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.timeline-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#dcfce7;
}

.step.completed{
    background:#16a34a;
    color:#fff;
}

.step.waiting{
    background:#fff;
}

.step.active{
    background:#206BC4;
    color:#fff;
}


.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.badge-status{
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

.badge-status.ready{
    background:#dcfce7;
    color:#15803d;
}

.badge-status.closed{
    background:#fee2e2;
    color:#b91c1c;
}

.badge-status.waiting{
    background:#fef3c7;
    color:#b45309;
}

.user-info{
    flex:1;
}



.btn-logout{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;

    background:#fee2e2;
    color:#dc2626;

    transition:.2s;
}

.btn-logout:hover{
    background:#dc2626;
    color:#fff;
}

.stat-progress{
    margin-top:15px;
}

.progress-bar{
    width:100%;
    height:6px;
    background:rgba(255,255,255,.25);
    border-radius:999px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    border-radius:999px;
}

.progress-active{
    background:#fbbf24;
}

.progress-success{
    background:#22c55e;
}

.progress-warning{
    background:#ef4444;
}

.progress-text{
    margin-top:6px;
    font-size:12px;
    opacity:.9;
}

.stat-footer{
    margin-top:20px;
    font-size:16px;
    opacity:.8;
}

.exam-badge.today{
    background:#dcfce7;
    color:#166534;
}

.exam-badge.upcoming{
    background:#dbeafe;
    color:#1d4ed8;
}

.exam-badge.finished{
    background:#f3f4f6;
    color:#6b7280;
}

.exam-badge.draft{
    background:#fef3c7;
    color:#b45309;
}

.btn-exam{
    display:block;
    text-align:center;
    text-decoration:none;
    width:100%;
    padding:12px;
    color:#fff;
    border-radius:12px;
    font-weight:600;
}

.btn-exam:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.btn-exam-disabled{
    width:100%;
    padding:12px;
    border:none;
    border-radius:12px;
    background:#e5e7eb;
    color:#6b7280;
}

.exam-no{
    font-size:12px;
    font-weight:600;
    color:#94a3b8;
    letter-spacing:1px;
}

.exam-dot{
    color:#9ca3af;
    margin:0 6px;
}

.exam-footer{
    margin-top:15px;
}

.empty-state-full{
    width:100%;
    min-height:200px;

    background:#fff;
    border-radius:10px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:10px;

    box-shadow:0 4px 12px rgba(0,0,0,.05);

    border:3px dashed #dbe4f0;

}

.empty-icon{
    font-size:48px;
    color:#94a3b8;
    margin-bottom:15px;
}

.empty-title{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.empty-text{
    font-size:16px;
    color:#6b7280;
}


.btn-disabled{
    opacity:.7;
    cursor:not-allowed;
    pointer-events:none;
}


.detail-header{
    margin-bottom:20px;
}

.btn-back{
    color:#206BC4;
    text-decoration:none;
    font-weight:600;
}

.status-banner{
    border-radius:16px;
    padding:20px;
    margin-bottom:20px;

    display:flex;
    gap:15px;
    align-items:center;
}

.status-banner.success{
    background:#dcfce7;
    color:#166534;
}

.status-banner.warning{
    background:#fef3c7;
    color:#92400e;
}

.status-banner.danger{
    background:#fee2e2;
    color:#991b1b;
}

.detail-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
}

.action-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:15px;
}

@media (max-width:768px){

    .action-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

}

.btn-action{
    height:55px;
    border:none;
    border-radius:10px;
    color:#fff;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    transition:.25s;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration: none;
}

.btn-action:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.btn-primary{
    background:#206BC4;
}

.btn-success{
    background:#16a34a;
}

.btn-warning{
    background:#f59e0b;
}

.btn-danger{
    background:#dc2626;
}

.btn-info{
    background:#0ea5e9;
}

.btn-secondary{
    background:#94a3b8;
}

.btn-disabled{
    opacity:.6;
    cursor:not-allowed;
    pointer-events:none;
}

.timeline{
    list-style:none;
    margin-top:20px;
    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    left:10px;
    top:0;
    bottom:0;
    width:2px;
    background:#dbe2ea;
}

.timeline li{
    position:relative;
    padding-left:40px;
    margin-bottom:25px;
}

.timeline li:last-child{
    margin-bottom:0;
}

.timeline li::before{
    content:'';
    position:absolute;
    left:2px;
    top:4px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#206BC4;
}

.timeline-title{
    font-weight:700;
    color:#111827;
    margin-bottom:4px;
}

.timeline-date{
    font-size:13px;
    color:#6b7280;
}

.detail-page-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:25px;
}

.detail-title{
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:5px;
}

.detail-subtitle{
    color:#6b7280;
    font-size:16px;
}

.btn-back{
    background:#fff;
    color:#206BC4;
    border:1px solid #dbe2ea;
    border-radius:12px;
    padding:10px 18px;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.btn-back:hover{
    background:#206BC4;
    color:#fff;
}

@media (max-width:768px){

    .detail-page-header{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:12px;
    }

     .detail-title{
        font-size:20px;
        line-height:1.3;
        margin-bottom:4px;
    }

    .btn-back{
        margin-top:12px;
        width:100%;
        text-align:center;
        padding:10px 16px;
    }

    .detail-subtitle{
        font-size:14px;
    }

}

.section-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
    color:#111827;

    display:flex;
    align-items:center;
    gap:10px;
}

.exam-info-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.exam-info-item{
    display:flex;
    align-items:flex-start;
    gap:15px;

    padding:14px 16px;

    border:1px solid #e5e7eb;
    border-radius:14px;

    transition:.25s;
}

.exam-info-item:hover{
    background:#f8fafc;
}

.exam-info-icon{
    width:42px;
    height:42px;

    border-radius:12px;

    background:#eff6ff;
    color:#206BC4;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.exam-info-label{
    font-size:13px;
    color:#64748b;
    margin-bottom:3px;
}

.exam-info-value{
    font-size:17px;
    font-weight:600;
    color:#111827;
}

.detail-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.detail-left,
.detail-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.monitor-status{
    margin-bottom:20px;
}

.countdown-box{
    text-align:center;
    padding:20px;
    border-radius:12px;
    background:#f8fafc;
}

.countdown-label{
    color:#64748b;
    margin-bottom:5px;
}

.countdown-time{
    font-size:32px;
    font-weight:700;
    color:#dc2626;
}


.answer-file-card{

    display:flex;
    gap:20px;

    padding:20px;

    border:1px solid #e5e7eb;
    border-radius:16px;

    background:#f8fafc;

    transition:.25s;
}

.answer-file-card:hover{

    border-color:#206BC4;
    background:#ffffff;

}

.answer-file-icon{

    width:70px;
    height:70px;

    border-radius:16px;

    background:#fee2e2;
    color:#dc2626;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    flex-shrink:0;

}

.answer-file-content{
    flex:1;
}


.answer-file-meta{

    display:flex;
    gap:20px;

    flex-wrap:wrap;

    color:#64748b;

    margin-bottom:12px;

    font-size:14px;
}

.answer-file-meta i{
    margin-right:5px;
}

.answer-file-status{
    margin-bottom:15px;
}

.file-status{

    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:6px 12px;

    border-radius:999px;

    font-size:13px;
    font-weight:600;
}

.file-status.success{

    background:#dcfce7;
    color:#166534;
}

.answer-file-action{

    display:flex;
    gap:10px;

    flex-wrap:wrap;
}

.btn-mini{

    padding:10px 16px;

    border-radius:10px;

    text-decoration:none;

    color:#fff;

    font-size:14px;
    font-weight:600;

    transition:.25s;
}

.btn-mini:hover{

    transform:translateY(-2px);

}


.answer-file-status{
    margin-bottom:10px;
}

.answer-file-meta{
    font-size:13px;
    color:#64748b;
    margin-bottom:15px;
}


.file-status.success{
    background:#dcfce7;
    color:#166534;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
}

.btn-teal{
    background:#14b8a6;
    color:#fff;
}

.status-banner.info{
    background:#dbeafe;
    color:#1d4ed8;
}

.status-banner.danger{
    background:#fee2e2;
    color:#b91c1c;
}

.status-banner.secondary{
    background:#f1f5f9;
    color:#475569;
}

.timeline li.timeline-primary::before{
    background:#206bc4;
}

.timeline li.timeline-warning::before{
    background:#f59e0b;
}

.timeline li.timeline-success::before{
    background:#22c55e;
}

.timeline li.timeline-danger::before{
    background:#ef4444;
}

.timeline li.timeline-teal::before{
    background:#14b8a6;
}


.countdown-success{

    color:#16a34a;
    text-transform:uppercase;

}

.countdown-danger{

    color:#dc2626;
    text-transform:uppercase;

}

.answer-file-card{

    display:flex;
    align-items:center;

    gap:20px;

    padding:24px;

    border:1px solid #e5e7eb;

    border-radius:18px;

    background:#fff;
}

.answer-file-icon{

    width:90px;
    height:90px;

    flex-shrink:0;

    border-radius:18px;

    background:#fef2f2;

    color:#dc2626;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:700;
}

.answer-file-content{

    flex:1;
}

.answer-file-name{

    font-size:18px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:8px;
}

.answer-file-status{

    color:#16a34a;

    font-weight:600;

    margin-bottom:8px;
}

.answer-file-meta{

    color:#64748b;

    margin-bottom:16px;
}

.answer-file-action a{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:10px;

    background:#0ea5e9;

    color:#fff;

    text-decoration:none;

    font-weight:600;
}

.answer-file-action a:hover{

    background:#0284c7;
}




.btn-file-view{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    width:100%;

    height:46px;

    margin-top:15px;

    border-radius:12px;

    background:#16a34a;

    color:#fff;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:all .2s ease;
}

.btn-file-view:hover{

    background:#15803d;

    color:#fff;

    text-decoration:none;

    transform:translateY(-1px);

    box-shadow:0 4px 12px rgba(14,165,233,.25);
}

.btn-file-view i{

    font-size:14px;
}

.detail-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:24px;

}

@media(max-width:768px){

    .detail-grid{

        grid-template-columns:1fr;

    }

}

.answer-file-meta{

    display:flex;

    flex-direction:column;

    gap:8px;

    color:#64748b;

    font-size:14px;

}

.answer-file-meta div{

    display:flex;

    align-items:center;

    gap:8px;

}

.card-action{
    min-height:auto;
    height:auto;
}

.exam-note{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-top:25px;

    padding:18px 20px;

    border-radius:14px;

}

.exam-note.warning{

    background:#fffbeb;

    border:1px solid #fde68a;

}

.exam-note.warning i{

    color:#d97706;

    font-size:20px;

    margin-top:2px;

}

.exam-note-title{

    font-size:15px;

    font-weight:700;

    color:#92400e;

    margin-bottom:5px;

}

.exam-note-desc{

    font-size:14px;

    line-height:1.5;

    color:#92400e;

}

.btn-action.disabled{

    background:#cbd5e1 !important;

    color:#333333 !important;

    cursor:not-allowed !important;

    pointer-events:none !important;

    opacity:.7;

}

.btn-success-locked{

    background:#dcfce7 !important;

    color:#166534 !important;

    border:1px solid #bbf7d0;

    cursor:default;

    pointer-events:none;

}

.empty-answer{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    min-height:220px;

    border-radius:18px;

    padding:30px 20px;

}

.empty-answer i{

    font-size:48px;

    margin-bottom:15px;

}

.empty-answer-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:8px;

}

.empty-answer-desc{

    font-size:14px;

    line-height:1.6;

}

.empty-answer.warning{

    background:#fffbeb;

    border:1px solid #fde68a;

    color:#92400e;

}

.empty-answer.danger{

    background:#fef2f2;

    border:1px solid #fecaca;

    color:#991b1b;

}

.empty-answer.info{

    background:#eff6ff;

    border:1px solid #bfdbfe;

    color:#1d4ed8;

}



.custom-modal{

    position:fixed;
    inset:0;

    background:rgba(15,23,42,.55);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;

}

.custom-modal.show{

    display:flex;

}

.custom-modal-content{

    width:550px;
    max-width:95%;

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.2);

}

.custom-modal-header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 24px;

    border-bottom:1px solid #e5e7eb;

}

.custom-modal-header h3{

    margin:0;
    font-size:22px;

}

.modal-close{

    border:none;
    background:none;

    font-size:28px;
    cursor:pointer;

}

.custom-modal-body{

    padding:22px;

}

.confirm-item{

    display:flex;
    justify-content:space-between;

    padding:12px 0;

    border-bottom:1px solid #f1f5f9;

}

.confirm-item span{

    color:#64748b;

}

.warning-box{

    margin-top:5px;

    background:#fffbeb;

    border:1px solid #fde68a;

    color:#92400e;

    border-radius:10px;

    padding:16px;

    display:flex;
    gap:14px;

    line-height:1.5;

}

.custom-modal-footer{

    padding:20px 24px;

    border-top:1px solid #e5e7eb;

    display:flex;
    justify-content:flex-end;
    gap:12px;

}

.btn-cancel{

    padding:12px 20px;

    border-radius:10px;

    border:1px solid #d1d5db;

    background:#fff;

    cursor:pointer;

}

.btn-start{

    padding:12px 20px;

    border-radius:10px;

    background:#16a34a;

    color:#fff;

    text-decoration:none;

    font-weight:600;
    gap: 10px;

}

.btn-download{

    padding:12px 20px;

    border-radius:10px;

    background:#16a34a;

    color:#fff;
    border: none;

    text-decoration:none;

    font-weight:600;
    gap: 10px;
    cursor: pointer;

}

.modal-content{

    max-height:90vh;

    display:flex;
    flex-direction:column;

}

.modal-body{

    overflow-y:auto;

    max-height:calc(90vh - 140px);

}


.upload-dropzone{

    border:2px dashed #cbd5e1;
    border-radius:10px;

    padding:20px;

    text-align:center;

    background:#f8fafc;

}

.upload-dropzone i{

    font-size:28px;
    color:#2563eb;

    margin-bottom:7px;

}

.upload-title{

    font-size:16px;
    font-weight:700;

}

.upload-desc{

    color:#64748b;
    margin-top:6px;
    margin-bottom:10px;

}

.upload-dropzone input{

    margin-top:20px;

}

.selected-file{

    margin-top:10px;
    margin-bottom:10px;

    padding:15px;

    border-radius:10px;

    background:#f1f5f9;

    font-size:12px;

}

.upload-dropzone input[type=file]{
    display:none;
}


.btn-select-file{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:6px 14px;

    border-radius:10px;

    background:#2563eb;
    color:#fff;

    font-weight:600;

    cursor:pointer;

}


.mini-progress{
    height:8px;
    margin-top:12px;
    border-radius:20px;
    background:rgba(255,255,255,.25);
    overflow:hidden;
}

.mini-progress-bar{
    height:100%;
    background:#22c55e;
    border-radius:20px;
}

.progress-text{
    margin-top:6px;
    font-size:13px;
    font-weight:600;
    color:#fff;
}


.bg-success{
    background:#22c55e !important;
}

.bg-warning{
    background:#eab308 !important;
}

.bg-danger{
    background:#ef4444 !important;
}

.auth-payment {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-bottom: 5px solid #ffb300;
    border-radius: 16px;
}

.empty-state-full.access-denied {
    text-align: center;
    padding: 50px 30px;
    border-radius: 16px;
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.empty-state-full.access-denied .empty-icon {
    font-size: 64px;
    color: #dc2626;
    margin-bottom: 20px;
}

.empty-state-full.access-denied .empty-title {
    font-size: 24px;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 10px;
}

.empty-state-full.access-denied .empty-text {
    font-size: 15px;
    color: #7f1d1d;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

.empty-state-full.access-denied .btn-login {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .2s;
}

.empty-state-full.access-denied .btn-login:hover {
    background: #b91c1c;
    color: #fff;
}

.btn-file-danger{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    width:100%;

    height:46px;

    margin-top:15px;

    border-radius:12px;

    background:#dc2626;

    color:#fff;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:all .2s ease;
}

.btn-file-danger:hover{

    background:#b91c1c;

    color:#fff;

    text-decoration:none;

    transform:translateY(-1px);

    box-shadow:0 4px 12px rgba(14,165,233,.25);
}


.btn-file-koneksi{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    width:100%;

    height:46px;

    margin-top:15px;

    border-radius:12px;

    background:#dc2626;

    color:#fff;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:all .2s ease;
}

.btn-file-koneksi:hover{

    background:#b91c1c;

    color:#fff;

    text-decoration:none;

    transform:translateY(-1px);

    box-shadow:0 4px 12px rgba(14,165,233,.25);
}

.action-area{
    text-align:center;
    margin-top:15px;
}

.server-clock-card{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:10px;
    padding:12px 16px;
    margin-bottom:15px;
}

.clock-label{
    font-size:13px;
    color:#64748b;
    margin-bottom:6px;
    font-weight:600;
}

.clock-date{
    font-size:16px;
    font-weight:600;
    color:#334155;
    text-align: center;
}

.clock-time{
    font-size:30px;
    font-weight:700;
    color:#206BC4;
    text-align: center;
}

.captcha-wrap{
    display:flex;
    align-items:center;
    gap:10px;
}

.captcha-input{
    flex:1;
}

.captcha-box{
    min-width:140px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #dbe2ea;
    border-radius:8px;
    background:#f8fafc;
}

@media (max-width:768px){

    .captcha-wrap{
        flex-direction:column;
        align-items:stretch;
    }

    .captcha-box{
        width:100%;
    }

}