/* @version 3.32.0 */
/* Upgrade linea grafica 2022 */
.bg-dark {
    background-color: #1e1f21 !important;
}


/* Sidebar */
.sidebar .nav-link {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
}

:root {
    --gris: #eaf0fa;
    --gris-destacado: #7290c3;
    --oscuro: #07081b;
}

/* Título de proyecto: alineado a design system (Inter, peso encabezado) */
#nombre-proyecto {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: -0.02em;
}

#nombre-proyecto sup {
    font-size: .5em;
}

.alert-success {
    border: 0;
    border-radius: 1em;
    color: var(--gris-destacado);
    background-color: var(--gris);
    margin: 2em 0;
    font-size: 16px;
    font-weight: 300;
}

.alert-success .fas {
    border: 2px solid;
    border-radius: 100%;
    padding: .5em;
    margin-right: .5em;
    color: var(--gris-destacado);
}

.nav-tabs .nav-link {
    border: 0;
}

#work-today {
    background-color: var(--oscuro);
}

#tiempo_display {
    animation: parpadeo 1s infinite;
}

@keyframes parpadeo {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}