/* public/assets/css/app.css */

body {

    font-family:
        'Segoe UI',
        sans-serif;

    background: #f8fafc;
}

/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/

.card {

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.08);
}

/*
|--------------------------------------------------------------------------
| Botones
|--------------------------------------------------------------------------
*/

.btn {

    transition: .2s ease;
}

.btn:hover {

    transform: scale(1.02);
}

/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
*/

.navbar-brand {

    font-size: 1.3rem;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

footer a:hover {

    opacity: 1 !important;
}

/*
|--------------------------------------------------------------------------
| PDF
|--------------------------------------------------------------------------
*/

#pdf-container {

    background: #222;
}

/*
|--------------------------------------------------------------------------
| Scrollbar
|--------------------------------------------------------------------------
*/

::-webkit-scrollbar {

    width: 8px;
}

::-webkit-scrollbar-thumb {

    background: #cbd5e1;

    border-radius: 20px;
}