.barscan-user-dashboard{
    background:#fff;
    padding:20px;
    border-radius:10px;
}
/* ======================================
GLOBAL
====================================== */

.wrap{
    background:#f5f7fb;
    padding:20px;
}



/* ======================================
HEADER
====================================== */

.barscan-header{
    background:linear-gradient(135deg,#081225,#16367a);
    border-radius:20px;
    padding:28px 35px;
    margin-bottom:22px;
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.barscan-header h1{
    margin:0;
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1.2;
}

.barscan-header p{
    margin-top:10px;
    font-size:15px;
    color:#dce6ff;
}



/* ======================================
STATS
====================================== */

.barscan-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:22px;
}

.barscan-stat-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    border:1px solid #e9edf5;
    box-shadow:0 3px 12px rgba(0,0,0,0.04);
}

.barscan-stat-card span{
    display:block;
    font-size:14px;
    color:#6b7280;
    margin-bottom:8px;
}

.barscan-stat-card h2{
    margin:0;
    font-size:42px;
    line-height:1;
    color:#081225;
    font-weight:700;
}



/* ======================================
CARD
====================================== */

.barscan-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:22px;
    border:1px solid #e9edf5;
    box-shadow:0 3px 12px rgba(0,0,0,0.04);
}

.barscan-card h2{
    margin:0 0 24px;
    font-size:24px;
    color:#081225;
    font-weight:700;
}



/* ======================================
UPLOAD GRID
====================================== */

.barscan-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:end;
}



/* ======================================
LABELS
====================================== */

.barscan-form-grid label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:#111827;
}



/* ======================================
SELECT
====================================== */

.barscan-input{
    width:100%;
    height:52px;
    border:1px solid #d8dfeb;
    border-radius:14px;
    padding: 12px 7px;
    background:#fff;
    font-size:15px;
    color:#111827;
    transition:0.3s;
}

.barscan-input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,0.1);
}



/* ======================================
FILE FIELD
====================================== */

input[type="file"]{
    width:100%;
    padding:16px;
    border:2px dashed #d7dfeb;
    border-radius:16px;
    background:#fafcff;
    font-size:14px;
    transition:0.3s;
}

input[type="file"]:hover{
    border-color:#2563eb;
    background:#f3f7ff;
}



/* ======================================
BUTTON
====================================== */

.barscan-btn{
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:14px;
    padding:14px 28px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    margin-top:26px;
    transition:0.3s;
    box-shadow:0 6px 14px rgba(37,99,235,0.2);
}

.barscan-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}



/* ======================================
TABLE
====================================== */

.barscan-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    border-radius:14px;
}

.barscan-table thead{
    background:#f3f6fb;
}

.barscan-table th{
    padding:16px;
    text-align:left;
    font-size:14px;
    color:#111827;
    font-weight:700;
}

.barscan-table td{
    padding:18px 16px;
    border-top:1px solid #edf1f6;
    font-size:14px;
    color:#374151;
    background:#fff;
}



/* ======================================
STATUS
====================================== */

.barscan-status{
    background:#dcfce7;
    color:#15803d;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}



/* ======================================
DOWNLOAD BUTTON
====================================== */

.barscan-download{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    text-decoration:none;
    padding:10px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    transition:0.3s;
}

.barscan-download:hover{
    background:#2563eb;
    color:#fff;
}



/* ======================================
DELETE BUTTON
====================================== */

.barscan-delete{
    display:inline-block;
    background:#fee2e2;
    color:#dc2626;
    text-decoration:none;
    padding:10px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    transition:0.3s;
}

.barscan-delete:hover{
    background:#dc2626;
    color:#fff;
}



/* ======================================
SUCCESS NOTICE
====================================== */

.notice-success{
    border-left:none !important;
    background:#dcfce7 !important;
    padding:14px 18px !important;
    border-radius:12px !important;
    margin-bottom:20px !important;
}



/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px){

    .barscan-stats{
        grid-template-columns:1fr;
    }

    .barscan-form-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .barscan-header h1{
        font-size:30px;
    }

    .barscan-card{
        padding:22px;
    }

    .barscan-card h2{
        font-size:22px;
    }

    .barscan-stat-card h2{
        font-size:34px;
    }

    .barscan-table{
        display:block;
        overflow-x:auto;
    }

}
