/*
|--------------------------------------------------------------------------
| Kolorz Portal
|--------------------------------------------------------------------------
| Archivo: style.css
| Versión: 1.0.0
| Descripción:
| Estilos globales del sistema.
|--------------------------------------------------------------------------
*/

/* Fondo general */

body {
    background-color: #f4f6fa;
}

/* ========================================================= */
/* Menú lateral */
/* ========================================================= */

.sidebar {

    min-height: 100vh;

    background: #111827;

    color: white;

    padding: 20px;
}

.sidebar-header {

    text-align: center;

    margin-bottom: 40px;
}

.logo {

    max-width: 140px;

    margin-bottom: 15px;
}

.version {

    color: #9ca3af;

    font-size: .85rem;
}

/* Opciones del menú */

.menu-item {

    width: 100%;

    border: none;

    background: transparent;

    color: white;

    text-align: left;

    padding: 14px;

    border-radius: 10px;

    margin-bottom: 10px;

    transition: .2s;
    
    text-decoration: none;

    display: block;
}

.menu-item:hover {

    background: #1f2937;
}

/* ========================================================= */
/* Área principal */
/* ========================================================= */

.content-area {

    padding: 35px;
}

.page-header {

    background: white;

    border-radius: 15px;

    padding: 25px;

    margin-bottom: 25px;

    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* ========================================================= */
/* Tarjetas dashboard */
/* ========================================================= */

.dashboard-card {

    background: white;

    border-radius: 15px;

    padding: 25px;

    cursor: pointer;

    transition: .2s;

    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.dashboard-card:hover {

    transform: translateY(-4px);
}

.logo {

    width: 100%;

    max-width: 120px;

    height: auto;

    display: block;

    margin: 0 auto 15px auto;
}

/*
|--------------------------------------------------------------------------
| Enlaces de tarjetas dashboard
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Enlaces de tarjetas dashboard
|--------------------------------------------------------------------------
*/

.dashboard-link {

    text-decoration: none !important;

    color: inherit !important;

    display: block;
}

.dashboard-link:hover {

    text-decoration: none !important;

    color: inherit !important;
}

/*
|--------------------------------------------------------------------------
| Formularios
|--------------------------------------------------------------------------
| Tarjetas estáticas sin efecto hover.
|--------------------------------------------------------------------------
*/

.form-card {

    background: white;

    border-radius: 15px;

    padding: 30px;

    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

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

.btn-primary {

    border-radius: 10px;

    padding: 10px 18px;

    font-weight: 600;
}