/* =========================================
   IMPORT FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================
   RESET
========================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

/* =========================================
   BODY
========================================= */

body{

    font-family:'Inter',sans-serif;

    background:
    radial-gradient(circle at top left,#1e3a8a 0%,transparent 35%),
    radial-gradient(circle at bottom right,#7c3aed 0%,transparent 35%),
    #050816;

    color:#f8fafc;

    min-height:100vh;

    overflow-x:hidden;

}

/* =========================================
   HEADER
========================================= */

.header{

    width:100%;

    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 45px;

    background:
    rgba(10,15,30,0.7);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,0.06);

    position:sticky;

    top:0;

    z-index:999;

}

/* =========================================
   LOGO
========================================= */

.logo{

    font-size:32px;

    font-weight:900;

    letter-spacing:1px;

    text-transform:uppercase;

    background:
    linear-gradient(
        90deg,
        #60a5fa,
        #818cf8,
        #a855f7
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* =========================================
   NAVBAR
========================================= */

.navbar{

    display:flex;

    align-items:center;

    gap:15px;

}

.navbar a{

    text-decoration:none;

    color:#cbd5e1;

    font-size:15px;

    font-weight:600;

    padding:12px 18px;

    border-radius:14px;

    transition:0.25s;

}

.navbar a:hover{

    background:
    rgba(255,255,255,0.06);

    color:white;

}

/* =========================================
   CONTAINER
========================================= */

.container{

    width:100%;

    padding:35px;

}

/* =========================================
   PAGE TITLE
========================================= */

.page-title{

    font-size:48px;

    font-weight:900;

    margin-bottom:35px;

    color:white;

}

/* =========================================
   CARD
========================================= */

.card{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.06);

    border-radius:28px;

    padding:28px;

    margin-bottom:30px;

    backdrop-filter:blur(14px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.25);

}

/* =========================================
   BUTTON
========================================= */

.btn{

    border:none;

    padding:16px 28px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #3b82f6,
        #8b5cf6
    );

    color:white;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:0.25s;

    box-shadow:
    0 10px 30px rgba(59,130,246,0.35);

}

.btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px rgba(59,130,246,0.45);

}

/* =========================================
   FORM
========================================= */

.form-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap:18px;

}

/* =========================================
   INPUT
========================================= */

input,
select{

    width:100%;

    height:55px;

    padding:0 16px;

    border-radius:18px;

    border:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.04);

    color:white;

    font-size:15px;

    transition:0.25s;

}

input:focus,
select:focus{

    outline:none;

    border-color:#3b82f6;

    box-shadow:
    0 0 0 4px rgba(59,130,246,0.12);

}

select option{

    background:#111827;

}

/* =========================================
   SHEET CONTAINER
========================================= */

.sheet-container{

    overflow-x:auto;

    border-radius:28px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.25);

}

/* =========================================
   SHEET TABLE
========================================= */

.sheet-table{

    width:100%;

    min-width:1250px;

    border-collapse:collapse;

}

/* =========================================
   TABLE CELLS
========================================= */

.sheet-table th,
.sheet-table td{

    border:
    1px solid rgba(255,255,255,0.06);

    text-align:center;

    position:relative;

}

/* =========================================
   EMPLOYEE HEADER
========================================= */

.emp-col{

    width:170px;

    min-width:170px;

    background:
    linear-gradient(
        135deg,
        #3b82f6,
        #2563eb
    );

    color:white;

    font-size:24px;

    font-weight:800;

}

/* =========================================
   EMPLOYEE NAME
========================================= */

.emp-name{

    width:170px;

    min-width:170px;

    background:
    rgba(255,255,255,0.03);

    color:white;

    font-size:20px;

    font-weight:700;

    padding:18px;

}

/* =========================================
   HEADER ROTATE
========================================= */

.rotate{

    width:95px;

    min-width:95px;

    height:135px;

    background:
    linear-gradient(
        180deg,
        #2563eb,
        #3b82f6
    );

    position:relative;

    overflow:hidden;

}

.rotate div{

    position:absolute;

    left:50%;

    bottom:22px;

    transform:
    translateX(-50%)
    rotate(-55deg);

    transform-origin:center;

    width:150px;

    text-align:center;

    color:white;

    font-size:16px;

    font-weight:700;

}

/* =========================================
   INPUT TABLE
========================================= */

.sheet-table input{

    width:95px;

    height:60px;

    border:none;

    background:
    transparent;

    color:white;

    font-size:18px;

    font-weight:700;

    text-align:center;

}

.sheet-table input:focus{

    outline:none;

    background:
    rgba(59,130,246,0.12);

}

/* =========================================
   TOTAL COLUMN
========================================= */

.gray-box{

    width:110px;

    min-width:110px;

    background:
    rgba(255,255,255,0.03);

    color:#60a5fa;

    font-size:18px;

    font-weight:800;

}

/* =========================================
   CLASSIC TABLE
========================================= */

.table-container{

    overflow-x:auto;

}

table{

    width:100%;

    border-collapse:collapse;

}

table th{

    background:
    linear-gradient(
        135deg,
        #3b82f6,
        #2563eb
    );

    color:white;

    padding:18px;

    font-size:15px;

}

table td{

    padding:18px;

    border-bottom:
    1px solid rgba(255,255,255,0.06);

    background:
    rgba(255,255,255,0.03);

}

table tr:hover td{

    background:
    rgba(255,255,255,0.05);

}

/* =========================================
   STATS
========================================= */

.stats{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-bottom:35px;

}

.stat-box{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.06);

    border-radius:28px;

    padding:28px;

    backdrop-filter:blur(14px);

    transition:0.25s;

}

.stat-box:hover{

    transform:
    translateY(-5px);

}

.stat-box h3{

    color:#94a3b8;

    font-size:15px;

    margin-bottom:15px;

}

.stat-box p{

    font-size:40px;

    font-weight:800;

    color:white;

}

/* =========================================
   FOOTER
========================================= */

.footer{

    width:100%;

    margin-top:50px;

    padding:28px;

    text-align:center;

    color:#94a3b8;

    border-top:
    1px solid rgba(255,255,255,0.06);

    background:
    rgba(10,15,30,0.55);

    backdrop-filter:blur(12px);

}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width:10px;
    height:10px;

}

::-webkit-scrollbar-track{

    background:#0f172a;

}

::-webkit-scrollbar-thumb{

    background:#3b82f6;

    border-radius:50px;

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:900px){

.header{

    flex-direction:column;

    height:auto;

    gap:20px;

    padding:20px;

}

.navbar{

    flex-wrap:wrap;

    justify-content:center;

}

.container{

    padding:20px;

}

.page-title{

    font-size:34px;

}

.sheet-table{

    min-width:1200px;

}

}