body{
    margin:0;
    background:#edf2f7;
    font-family:'Segoe UI',Tahoma,sans-serif;
}

/* ===========================
   Top Navigation
=========================== */

.navbar{
    height:60px;
}

/* ===========================
   Sidebar
=========================== */

.sidebar{

    background:#1f2937;

    min-height:100vh;

    color:white;

    padding:20px;

}

.logo{

    text-align:center;

    margin-bottom:30px;

}

.logo h4{

    color:white;

    margin-bottom:0;

    font-weight:700;

}

.logo small{

    color:#9ca3af;

}

.menu-heading{

    display:block;

    margin-top:20px;

    margin-bottom:10px;

    color:#9ca3af;

    font-size:11px;

    letter-spacing:1px;

    font-weight:bold;

}

.sidebar a{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#d1d5db;

    padding:11px 15px;

    border-radius:8px;

    margin-bottom:4px;

    transition:all .25s;

}

.sidebar a:hover{

    background:#2563eb;

    color:white;

    transform:translateX(5px);

}

.sidebar a i{

    font-size:18px;

    width:22px;

}

.sidebar hr{

    border-color:#374151;

}

/* ===========================
   Main Content
=========================== */

.content{

    padding:30px;

}

/* ===========================
   Cards
=========================== */

.card{

    border:none;

    border-radius:12px;

    box-shadow:0 3px 8px rgba(0,0,0,.08);

}

.card-header{

    background:white;

    border-bottom:1px solid #eee;

    font-weight:600;

}

/* ===========================
   Tables
=========================== */

.table{

    margin-bottom:0;

}

.table thead{

    background:#f8f9fa;

}

.table tbody tr:hover{

    background:#eef5ff;

    cursor:pointer;

}

/* ===========================
   Buttons
=========================== */

.btn-primary{

    border-radius:8px;

}

/* ===========================
   Badges
=========================== */

.badge{

    padding:6px 10px;

    font-size:12px;

}

/* ===========================
   Inputs
=========================== */

.form-control{

    border-radius:8px;

}

/* ===========================
   Footer
=========================== */

footer{

    display:none;

}
.erp-card{
    background:#fff;
    border:none;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.erp-card-header{
    background:#0d6efd;
    color:#fff;
    padding:16px 22px;
    border-radius:12px 12px 0 0;
    font-size:1.1rem;
    font-weight:600;
}

.erp-card-body{
    padding:25px;
}

.erp-section-title{
    font-weight:600;
    color:#0d6efd;
}

.erp-page-title{
    font-size:2rem;
    font-weight:700;
}

.erp-page-subtitle{
    color:#777;
    margin-top:-5px;
}

.erp-footer-buttons{
    display:flex;
    justify-content:flex-end;
    gap:12px;
}

.btn-primary-lg{
    background:#0d6efd;
    color:#fff;
    padding:12px 30px;
    border-radius:8px;
    border:none;
}

.btn-primary-lg:hover{
    background:#0b5ed7;
}

.btn-success-lg{
    background:#198754;
    color:#fff;
    padding:12px 30px;
    border:none;
    border-radius:8px;
}

.btn-success-lg:hover{
    background:#157347;
}

.form-control,
.form-select{
    min-height:48px;
}

textarea.form-control{
    min-height:250px;
}

.upload-box{
    border:2px dashed #ced4da;
    border-radius:10px;
    padding:35px;
    text-align:center;
    background:#fafafa;
    transition:.3s;
}

.upload-box:hover{
    border-color:#0d6efd;
    background:#eef5ff;
}