* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    color: #334155;
    overflow-x: hidden;
}

/* Encabezado */
.encabezado {
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    height: 70px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.encabezado.colapsado {
    left: 80px;
}

.encabezado-izquierda {
    display: flex;
    align-items: center;
    gap: 16px;
}

.boton-menu {
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.boton-menu:hover {
    background: #f1f5f9;
}

.titulo-pagina {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}

.encabezado-derecha {
    display: flex;
    align-items: center;
    gap: 16px;
}

.boton-notificacion {
    position: relative;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.boton-notificacion:hover {
    background: #f1f5f9;
}

.badge-notificacion {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
}

.menu-notificacion {
    position: relative;
}

.desplegable-notificacion {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.desplegable-notificacion.mostrar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desplegable-notificacion::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 32px;
    border: 8px solid transparent;
    border-bottom-color: #e2e8f0;
    z-index: 10000;
}

.desplegable-notificacion::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 32px;
    border: 8px solid transparent;
    border-bottom-color: white;
    z-index: 10001;
}

/* Ajustes móviles para desplegable de notificaciones */
@media (max-width: 768px) {
    .desplegable-notificacion {
        width: 280px;
        right: -50px;
    }

    .desplegable-notificacion::before {
        right: 70px;
    }

    .desplegable-notificacion::after {
        right: 70px;
    }
}

.cabecera-notificacion {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
}

.item-notificacion {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.item-notificacion:hover {
    background: #f8fafc;
}

.item-notificacion:last-child {
    border-bottom: none;
}

.icono-notificacion {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.icono-notificacion.info {
    background: #dbeafe;
    color: #1d4ed8;
}

.icono-notificacion.exito {
    background: #dcfce7;
    color: #166534;
}

.icono-notificacion.advertencia {
    background: #fef3c7;
    color: #d97706;
}

.contenido-notificacion {
    flex: 1;
}

.titulo-notificacion {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 4px;
}

.texto-notificacion {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.tiempo-notificacion {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.menu-usuario {
    position: relative;
}

.boton-usuario {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.boton-usuario:hover {
    background: #f1f5f9;
}

.avatar-usuario {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.info-usuario {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.nombre-usuario {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.rol-usuario {
    font-size: 12px;
    color: #64748b;
}

.flecha-desplegable {
    color: #94a3b8;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.desplegable-usuario {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 200px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.desplegable-usuario.mostrar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desplegable-usuario::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 64px;
    border: 8px solid transparent;
    border-bottom-color: #e2e8f0;
    z-index: 10000;
}

.desplegable-usuario::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 64px;
    border: 8px solid transparent;
    border-bottom-color: white;
    z-index: 10001;
}

.item-desplegable {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    border-radius: 8px;
    margin: 8px;
    transition: all 0.2s ease;
}

.item-desplegable:hover {
    background: #f1f5f9;
}

.divisor-desplegable {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}

/* Barra lateral */
.barra-lateral {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    border-right: 1px solid #e2e8f0;
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.barra-lateral.colapsada {
    width: 80px;
}

.cabecera-barra-lateral {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #e2e8f0;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
}

/* En tu archivo CSS, después de cargar Bootstrap */
.cabecera-pagina h1.titulo-pagina,
.cabecera-pagina p.subtitulo-pagina {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.cabecera-pagina {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* Espacio controlado entre título y subtítulo */
}

.barra-lateral.colapsada .cabecera-barra-lateral {
    padding: 0 28px;
}

.logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.texto-logo {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    transition: all 0.3s ease;
}

.barra-lateral.colapsada .texto-logo {
    opacity: 0;
    transform: translateX(-20px);
}

.alternar-barra-lateral {
    display: none;
}

.navegacion-barra-lateral {
    padding: 24px 0;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.navegacion-barra-lateral::-webkit-scrollbar {
    width: 6px;
}

.navegacion-barra-lateral::-webkit-scrollbar-track {
    background: transparent;
}

.navegacion-barra-lateral::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 3px;
}

.navegacion-barra-lateral::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

.grupo-navegacion {
    margin-bottom: 32px;
}

.titulo-grupo-navegacion {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 24px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.barra-lateral.colapsada .titulo-grupo-navegacion {
    opacity: 0;
    transform: translateX(-20px);
}

.item-navegacion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    text-decoration: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.item-navegacion:hover {
    background: #f8fafc;
    color: #1e293b;
}

.item-navegacion.activo {
    background: #f1f5f9;
    color: #667eea;
}

.item-navegacion.activo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #667eea;
}

.barra-lateral.colapsada .item-navegacion.activo::before {
    display: none;
}

.barra-lateral.colapsada .item-navegacion::before {
    display: none !important;
}

.barra-lateral.colapsada .item-navegacion:hover::before {
    display: none !important;
}

.item-navegacion:focus,
.item-navegacion:active,
.item-navegacion:visited,
.item-navegacion:link {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
    color: inherit !important;
}

.item-navegacion:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.icono-navegacion {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.texto-navegacion {
    transition: all 0.3s ease;
}

.barra-lateral.colapsada .texto-navegacion {
    opacity: 0;
    transform: translateX(-20px);
    position: absolute;
    pointer-events: none;
}

.barra-lateral.colapsada .item-navegacion {
    justify-content: center;
    padding: 12px 0;
    position: relative;
    margin: 0 12px;
    border-radius: 8px;
}

.barra-lateral.colapsada .item-navegacion .icono-navegacion {
    margin: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tooltip para barra lateral colapsada */
.barra-lateral.colapsada .item-navegacion {
    --contenido-tooltip: attr(data-tooltip);
}

.barra-lateral.colapsada .item-navegacion:hover::after {
    content: var(--contenido-tooltip);
    position: fixed;
    left: 92px;
    top: var(--posicion-tooltip, 50%);
    transform: translateY(-50%);
    background: #1e293b;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 9999;
    opacity: 1;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.barra-lateral.colapsada .item-navegacion:hover::before {
    content: '';
    position: fixed;
    left: 86px;
    top: var(--posicion-tooltip, 50%);
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #1e293b;
    z-index: 9999;
}

/* Flecha de navegación */
.flecha-navegacion {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.barra-lateral.colapsada .flecha-navegacion {
    display: none !important;
    opacity: 0;
}

.item-navegacion.con-desplegable.abierto .flecha-navegacion {
    transform: rotate(90deg);
}

.barra-lateral.colapsada .item-navegacion.con-desplegable {
    justify-content: center;
}

.barra-lateral.colapsada .item-navegacion.con-desplegable .icono-navegacion {
    margin: 0;
}

.desplegable-navegacion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.desplegable-navegacion.abierto {
    max-height: 200px;
}

.item-desplegable-navegacion {
    padding: 8px 24px 8px 56px;
    color: #94a3b8;
    font-size: 13px;
    transition: all 0.2s ease;
}

.item-desplegable-navegacion:hover {
    background: #f8fafc;
    color: #64748b;
}

/* Contenido principal */
.contenido-principal {
    margin-left: 255px;
    margin-top: 70px;
    margin-right: 1px;
    padding-left: 24px;
    min-height: calc(100vh - 70px);
    transition: all 0.3s ease;
}

.contenido-principal.colapsado {
    margin-left: 60px;
}

.cabecera-contenido {
    margin-bottom: 24px;
}

.titulo-contenido {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.subtitulo-contenido {
    color: #64748b;
    font-size: 16px;
}

.rejilla-tarjetas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.tarjeta {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.tarjeta:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cabecera-tarjeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.titulo-tarjeta {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.icono-tarjeta {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.icono-tarjeta.azul {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.icono-tarjeta.verde {
    background: linear-gradient(135deg, #10b981, #059669);
}

.icono-tarjeta.morado {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icono-tarjeta.naranja {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contenido-tarjeta {
    color: #64748b;
    line-height: 1.6;
}

.numero-estadistica {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.etiqueta-estadistica {
    font-size: 14px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Overlay móvil */
.overlay-movil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-movil.mostrar {
    opacity: 1;
    visibility: visible;
}

.cerrar-barra-lateral {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cerrar-barra-lateral:hover {
    background: #f1f5f9;
    color: #334155;
}

.titulo-pagina{
    font-size: 16px;
}

.subtitulo-pagina{
    font-size: 14px;
}

/* Responsivo */
/* Responsivo */
@media (max-width: 1024px) {
    .barra-lateral {
        transform: translateX(-100%);
        z-index: 1002;
        width: 280px !important;
    }

    .barra-lateral.mostrar {
        transform: translateX(0);
    }

    .encabezado,
    .encabezado.colapsado {
        left: 0 !important;
    }

    .contenido-principal,
    .contenido-principal.colapsado {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 75px 0 10px !important;
        margin-left: 0 !important;
    }

    .cerrar-barra-lateral {
        display: flex;
    }

    .info-usuario {
        display: none;
    }

    .overlay-movil {
        z-index: 1001;
    }

    /* Resetear estado colapsado en móvil */
    .barra-lateral.colapsada {
        width: 280px !important;
    }

    .barra-lateral.colapsada .texto-navegacion {
        opacity: 1;
        transform: translateX(0);
        position: static;
        pointer-events: auto;
    }

    .barra-lateral.colapsada .item-navegacion {
        justify-content: flex-start;
        padding: 12px 24px;
    }

    .barra-lateral.colapsada .titulo-grupo-navegacion {
        opacity: 1;
        transform: translateX(0);
    }

    .barra-lateral.colapsada .texto-logo {
        opacity: 1;
        transform: translateX(0);
    }

    .barra-lateral.colapsada .cabecera-barra-lateral {
        padding: 0 24px;
    }

    /* Ocultar submenús flotantes en móvil */
    .barra-lateral.colapsada .desplegable-navegacion {
        position: static !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        min-width: auto !important;
        padding: 0 !important;
        z-index: auto !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: max-height 0.3s ease !important;
    }

    .barra-lateral.colapsada .desplegable-navegacion::before,
    .barra-lateral.colapsada .desplegable-navegacion::after {
        display: none !important;
    }

    .barra-lateral.colapsada .desplegable-navegacion.abierto {
        max-height: 200px !important;
    }

    .barra-lateral.colapsada .desplegable-navegacion:not(.abierto) {
        max-height: 0 !important;
    }

    .barra-lateral.colapsada .item-desplegable-navegacion {
        padding: 8px 24px 8px 56px !important;
        color: #94a3b8 !important;
        font-size: 13px !important;
        width: auto !important;
        display: block !important;
    }
}

@media (max-width: 768px) {
    .encabezado {
        padding: 0 16px;
    }

    .rejilla-tarjetas {
        grid-template-columns: 1fr;
    }

    .titulo-pagina {
        font-size: 12px;
    }

    .subtitulo-pagina {
        font-size: 12px;
    }

    .titulo-contenido {
        font-size: 24px;
    }
}

/* Ocultar tooltip cuando el popup está abierto - AGREGAR AL FINAL DE TU CSS PRINCIPAL */
.barra-lateral.colapsada .item-navegacion.con-desplegable.popup-abierto::after,
.barra-lateral.colapsada .item-navegacion.con-desplegable.popup-abierto::before,
.barra-lateral.colapsada .item-navegacion.con-desplegable.popup-abierto:hover::after,
.barra-lateral.colapsada .item-navegacion.con-desplegable.popup-abierto:hover::before {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    content: none !important;
}

/* Submenu popup para barra lateral colapsada */
.barra-lateral.colapsada .desplegable-navegacion {
    position: fixed;
    left: 92px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    padding: 8px 0;
    z-index: 10000;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.barra-lateral.colapsada .desplegable-navegacion.abierto {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    max-height: none;
}

.barra-lateral.colapsada .desplegable-navegacion::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 20px;
    border: 6px solid transparent;
    border-right-color: #e2e8f0;
    z-index: 10001;
}

.barra-lateral.colapsada .desplegable-navegacion::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 20px;
    border: 6px solid transparent;
    border-right-color: white;
    z-index: 10002;
}

.barra-lateral.colapsada .item-desplegable-navegacion {
    display: block;
    padding: 8px 16px;
    color: #64748b;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
}

.barra-lateral.colapsada .item-desplegable-navegacion:hover {
    background: #f8fafc;
    color: #1e293b;
}

/* AGREGAR AL FINAL DE TU CSS - Asegurar submenús en columna */

/* Asegurar que los submenús se muestren en columna (una fila por elemento) */
.desplegable-navegacion {
    display: flex;
    flex-direction: column;
}

.item-desplegable-navegacion {
    display: block !important;
    width: 100%;
    padding: 8px 24px 8px 56px;
    color: #94a3b8;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 6px;
    margin: 1px 0;
    box-sizing: border-box;
}

.item-desplegable-navegacion:hover {
    background: #f8fafc;
    color: #64748b;
    text-decoration: none;
}

/* Para modo colapsado (popup) - SOBRESCRIBIR LOS ESTILOS EXISTENTES */
.barra-lateral.colapsada .desplegable-navegacion {
    position: fixed;
    left: 92px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    padding: 8px 0;
    z-index: 10000;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
}

.barra-lateral.colapsada .item-desplegable-navegacion {
    display: block !important;
    width: 100%;
    padding: 8px 16px;
    color: #64748b;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 6px;
    margin: 1px 0;
    box-sizing: border-box;
}

.barra-lateral.colapsada .item-desplegable-navegacion:hover {
    background: #f8fafc;
    color: #1e293b;
}

/* Para móvil - SOBRESCRIBIR LOS ESTILOS EXISTENTES */
@media (max-width: 1024px) {
    .desplegable-navegacion {
        display: flex !important;
        flex-direction: column !important;
    }

    .item-desplegable-navegacion {
        display: block !important;
        width: 100% !important;
        padding: 10px 24px 10px 40px !important;
        margin: 2px 0 !important;
        color: #64748b !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
    }

    .item-desplegable-navegacion:hover {
        background: #f1f5f9 !important;
        color: #334155 !important;
        text-decoration: none !important;
    }

    /* Sobrescribir los estilos del móvil que ya tienes */
    .barra-lateral.colapsada .desplegable-navegacion {
        position: static !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        min-width: auto !important;
        padding: 0 !important;
        z-index: auto !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: max-height 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .barra-lateral.colapsada .item-desplegable-navegacion {
        padding: 8px 24px 8px 56px !important;
        color: #94a3b8 !important;
        font-size: 13px !important;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}
