:root{
    --primary:#A65E2E;
    --secondary:#E7B97E;
    --success:#2E7D32;
    --warning:#F9A825;
    --danger:#C62828;
    --light:#FFF8F0;
    --dark:#2B2B2B;
}

body{
    background:var(--light);
    font-family:'Segoe UI',sans-serif;
}


.sidebar{
    width:235px;
    position:fixed;
    left:0;
    top:0;
    height:100vh;
}

.content{
    margin-left:235px;
    padding:25px;
    min-height:100vh;
}

.container-fluid{
    max-width:1500px;
    margin:0 auto;
}
.card{
    border:none;
    border-radius:18px;
    overflow:hidden;
}

canvas{
    max-height:350px;
}

.table th{
    font-weight:600;
}


.form-control,
.form-select{
    border-radius:12px;
    min-height:48px;
}


.btn{
    border-radius:12px;
    padding:10px 18px;
}

.table{
    margin-bottom:0;
}

.table td,
.table th{
    vertical-align:middle;
}

.table-hover tbody tr:hover{
    background:#f8f9fa;
}

.table thead{
    background:#fafafa;
}

h2{
    font-weight:700;
    color:#2B2B2B;
}

.topbar{
    height:70px;
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.logo{
    padding:20px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.2);
}

.logo h3{
    margin:0;
    font-weight:700;
}


.sidebar{
    background:linear-gradient(
        180deg,
        #A65E2E,
        #7D4722
    );
}
.sidebar a{
    color:#fff;
    text-decoration:none;
    display:block;
    padding:15px 20px;
}

.sidebar a:hover{
    background:rgba(255,255,255,.1);
}

.content{
    margin-left:260px;
    padding:25px;
}

.card-dashboard{
    border:none;
    border-radius:15px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.card-dashboard .icon{
    font-size:40px;
}

.badge{
    padding:8px 12px;
    border-radius:10px;
    font-size:12px;
}

/* ==========================
   LOGIN PADCONTROL
========================== */

.login-page{
    margin:0;
    padding:0;
    min-height:100vh;
    background:
        linear-gradient(
            135deg,
            #A65E2E 0%,
            #8B4A23 40%,
            #2B2B2B 100%
        );
}

.login-background{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:25px;
    padding:50px;
    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}

.login-header{
    text-align:center;
    margin-bottom:35px;
}

.login-logo{
    font-size:70px;
    margin-bottom:10px;
}

.login-header h1{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.login-header p{
    color:#777;
    margin:0;
}

.login-card label{
    font-weight:600;
    color:#444;
}

.login-card .form-control{
    border-radius:12px;
    padding:14px;
}

.btn-padcontrol{
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-padcontrol:hover{
    background:#8B4A23;
    color:#fff;
}

.login-footer{
    text-align:center;
    margin-top:25px;
    color:#999;
    font-size:14px;
}