/* ==========================================
   SISTEMA DE RIFAS
   VA GROUP
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#f3f3f3;
    font-family:Arial, Helvetica, sans-serif;

}

/*=========================================
HEADER
=========================================*/

.header{

    background:#0d6efd;
    color:white;
    padding:15px;

    box-shadow:0 2px 8px rgba(0,0,0,.2);

}

.header h2{

    margin:0;
    font-size:30px;

}

/*=========================================
INFORMACION DE LA RIFA
=========================================*/

.info{

    background:white;

    padding:20px;

    border-radius:10px;

    margin-top:20px;

    margin-bottom:20px;

    box-shadow:0px 2px 10px rgba(0,0,0,.15);

}

.info strong{

    color:#0d6efd;

}

/*=========================================
TABLERO
=========================================*/

.tablero{

    display:grid;

    grid-template-columns:repeat(20,1fr);

    gap:6px;

}

/*=========================================
NUMEROS
=========================================*/

.numero{

    height:50px;

    border-radius:8px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:16px;

    font-weight:bold;

    border:1px solid #bdbdbd;

    cursor:pointer;

    transition:.25s;

    user-select:none;

}

.numero:hover{

    transform:scale(1.08);

    box-shadow:0px 3px 10px rgba(0,0,0,.30);

}

/*=========================================
COLORES
=========================================*/

.disponible{

    background:#d9d9d9;

    color:#000;

}

.separado{

    background:#dc3545;

    color:white;

}

.pagado{

    background:#198754;

    color:white;

}

/*=========================================
LEYENDA
=========================================*/

.leyenda{

    display:flex;

    gap:25px;

    margin-bottom:20px;

}

.item-leyenda{

    display:flex;

    align-items:center;

    gap:8px;

}

.color{

    width:25px;

    height:25px;

    border-radius:5px;

}

.color-disponible{

    background:#d9d9d9;

    border:1px solid #999;

}

.color-separado{

    background:#dc3545;

}

.color-pagado{

    background:#198754;

}

/*=========================================
BOTONES
=========================================*/

.btn-primary{

    border-radius:8px;

}

.btn-success{

    border-radius:8px;

}

.btn-danger{

    border-radius:8px;

}

.btn-secondary{

    border-radius:8px;

}

/*=========================================
MODAL
=========================================*/

.modal-content{

    border-radius:12px;

}

.modal-header{

    background:#0d6efd;

    color:white;

}

.modal-title{

    font-weight:bold;

}

/*=========================================
FORMULARIOS
=========================================*/

.form-control{

    border-radius:8px;

}

.form-select{

    border-radius:8px;

}

/*=========================================
LOGIN
=========================================*/

.login{

    margin-top:120px;

}

.login .card{

    border-radius:15px;

    box-shadow:0px 5px 20px rgba(0,0,0,.25);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.tablero{

grid-template-columns:repeat(15,1fr);

}

}

@media(max-width:900px){

.tablero{

grid-template-columns:repeat(10,1fr);

}

}

@media(max-width:700px){

.tablero{

grid-template-columns:repeat(8,1fr);

}

}

@media(max-width:500px){

.tablero{

grid-template-columns:repeat(5,1fr);

}

.numero{

height:45px;

font-size:14px;

}

.header h2{

font-size:22px;

}

}