/* public/css/estilos.css */

.card-curso {   
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-curso:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* public/css/estilos.css */

.border-left-primary { border-left: .25rem solid #4e73df!important; }
.border-left-success { border-left: .25rem solid #1cc88a!important; }
.border-left-info { border-left: .25rem solid #36b9cc!important; }

.text-xs { font-size: .7rem; }
.text-gray-800 { color: #5a5c69!important; }

/* ============================================= */
/* ==   FIX PARA SIDEBAR FIJO EN PANEL ADMIN   == */
/* ============================================= */

/* ============================================= */
/* ==   ESTILOS PARA SIDEBAR FIJO EN PANEL     == */
/* ============================================= */

.sidebar {
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}


@media (min-width: 768px) {
    .main-content-offset {
        padding-left: 25%;
    }
}

@media (min-width: 992px) {
    .main-content-offset {
        padding-left: 16.666667%;
    }
}