/* =======================================
   THE KATANA GLAMOUR
   PANEL ADMINISTRATIVO
======================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

:root{

    --negro:#111111;
    --dorado:#D4AF37;
    --blanco:#ffffff;
    --gris:#f4f4f4;
    --gris2:#6c757d;
    --verde:#198754;
    --rojo:#dc3545;
    --azul:#0d6efd;

}

body{

    background:var(--gris);

}

/* SIDEBAR */

.sidebar{

    position:fixed;
    left:0;
    top:0;
    width:260px;
    height:100vh;
    background:var(--negro);
    padding:25px;
    overflow:auto;

}

.sidebar h2{

    color:var(--dorado);
    text-align:center;
    margin-bottom:35px;
    font-weight:bold;

}

.sidebar a{

    display:block;
    color:white;
    text-decoration:none;
    padding:15px;
    margin-bottom:8px;
    border-radius:10px;
    transition:.3s;

}

.sidebar a:hover{

    background:var(--dorado);
    color:#111;

}

/* MAIN */

.main{

    margin-left:260px;
    padding:35px;

}

/* HEADER */

.topbar{

    background:white;
    padding:15px 25px;
    border-radius:15px;
    margin-bottom:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

/* CARDS */

.card-dashboard{

    border:none;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.card-dashboard:hover{

    transform:translateY(-5px);

}

.numero{

    font-size:45px;
    color:var(--dorado);
    font-weight:bold;

}

/* BOTONES */

.btn-dorado{

    background:var(--dorado);
    color:#111;
    font-weight:bold;
    border:none;

}

.btn-dorado:hover{

    background:#b68e1f;
    color:white;

}

/* TABLAS */

.table{

    background:white;

}

.table thead{

    background:#111;
    color:white;

}

/* LOGIN */

.login-body{

    background:#f5f5f5;

}

.login-box{

    max-width:470px;
    margin:80px auto;
    background:white;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.logo{

    text-align:center;
    font-size:40px;
    color:var(--dorado);

}

/* RESPONSIVE */

@media(max-width:991px){

.sidebar{

    width:100%;
    height:auto;
    position:relative;

}

.main{

    margin-left:0;

}

}