/* TimeExperience — Estilos globales */

body {
    background-color: #f8f9fa;
}

/* Navbar activo */
.navbar .nav-link.active {
    font-weight: 600;
    background-color: rgba(255,255,255,.15);
    border-radius: .375rem;
}

/* Cards de tags en dashboard */
.tag-card {
    border-left: 4px solid;
    transition: transform .15s;
}
.tag-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

/* Barra de progreso de experiencia */
.experience-bar {
    height: 12px;
    border-radius: 6px;
}

/* Badge de tags en tablas */
.tag-badge {
    font-size: .75rem;
    padding: .3em .6em;
}

/* Tabla responsive */
.table-hover tbody tr:hover {
    background-color: rgba(13,110,253,.04);
}

/* Formulario de búsqueda en reportes */
#search-form .form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.2);
}

/* Spinner overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Texto de totales en dashboard */
.total-years {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
}
