


.fila_blanca {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 0 50px #ccc;
    padding: 8px;
}

.casilla_dia {
    min-height: 100px;
    height: 100px;
}
.ancho_casilla {
    min-width: 100px;
}


#flecha_mas, #flecha_menos {
    cursor: pointer;
}

.dia_calendario:hover, .dia_evento:hover, .dia_ambos:hover {
    background-color: rgb(243, 243, 243);
    cursor: pointer;
}

.red {
    color: red;
}

#table_calendario {
    table-layout: fixed;
    width: 100%;
}

img.rounded-circle {
    height: 30px;
}

.small {
    padding: 0px 0px 0px 8px; 
    border-radius: 3px; 
    margin-bottom: 2px;
}

a:hover {
    cursor: pointer;
}

@media (pointer: fine) {
    .zoom { transition: all .2s ease-in-out; }

    .zoom:hover {
        transform: scale(4);
    }
}


@media only screen and (max-width: 600px) {
    .container {
        width: 96%;
    }
    
    .btn {
        --bs-btn-padding-y: .25rem; 
        --bs-btn-padding-x: .5rem; 
        --bs-btn-font-size: .75rem;
    }

    .nav-link {
        font-size: 120%;
    } 

    body {
        font-size: 80%;
    }

    .casilla_dia {
        min-height: 70px;
        height: 70px;
    }

    img.rounded-circle {
        height: 24px;
    }

    .small {
        font-size: 8px;
        padding: 0px 0px 0px 2px;
    }

    .docu {
        max-height: 24px;
    }

  

}