*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",sans-serif;
}

body{
    background:#F8FAFC;
}

/* ================= MAIN CONTENT ================= */
.main-content{
    flex:1;
    padding:30px;
    transition:.3s ease;
}

/* ================= MENU BUTTON ================= */
.menu-toggle{
    width:48px;
    height:48px;
    border:none;
    border-radius:12px;
    background:#0F172A;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.menu-toggle:hover{
    background:#1E293B;
    transform:translateY(-2px);
}

/* ================= PAGE HEADER ================= */
.page-header{
    margin:25px 0;
}

.page-header h1{
    font-size:38px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:8px;
}

.page-header p{
    color:#64748B;
    font-size:15px;
}

/* ADD BUTTON */
.add-btn{
    height:45px;
    padding:0 22px;
    display:flex;
    align-items:center;
    gap:8px;

    background:#0f172a;
    color:white;

    text-decoration:none;
    font-size:15px;
    font-weight:600;

    border-radius:10px;

    transition:.3s;
}

.add-btn:hover{
    background:#1e293b;
    transform:translateY(-2px);
}

/* ================= TOP BAR ================= */
.top-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
    width:100%;
}

/* SEARCH */
.search-box{
    flex:1;
    min-width:280px;
    position:relative;
}

.search-box i{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#94A3B8;
}

.search-box input{
    width:100%;
    height:45px;
    padding-left:45px;
    border-radius:10px;
    border:1px solid #CBD5E1;
    background:white;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.search-box input:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 3px rgba(37,99,235,.1);
}

/* FILTER */
.filter-box select{
    padding:12px 18px;
    border-radius:12px;
    border:1px solid #CBD5E1;
    background:white;
    color:#334155;
    font-size:14px;
    cursor:pointer;
    outline:none;
}

.filter-box select:focus{
    border-color:#0F172A;
}

/* ================= TABLE ================= */
.table-card{
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

table{
    width:100%;
    border-collapse:collapse;
}

thead{
    background:#64748B;
}

thead th{
    padding:22px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    color:white;
}

tbody td{
    padding:22px;
    border-bottom:1px solid #F1F1F1;
    color:#334155;
    font-size:14px;
    text-align:center;
}

tbody tr:hover{
    background:#FAFCFF;
}

.status{
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.active{
    background:#DCFCE7;
    color:#15803D;
}

.inactive{
    background:#FEE2E2;
    color:#B91C1C;
}

.action-btn{

    border:none;
    background:none;
    cursor:pointer;
    font-size:16px;
    margin-right:12px;

}

.edit{
    color:#2563EB;
}

.delete{
    color:#DC2626;
}

/* Responsive */

@media(max-width:768px){

    .main-content{
        margin-left:0;
        padding:20px;
    }

    .page-header{
        flex-direction:column;
        gap:15px;
        align-items:flex-start;
    }

    .search-box{
        width:100%;
    }

    .table-card{
        overflow-x:auto;
    }

    table{
        min-width:900px;
    }

}