/* _content/Maxima.UI.Library/BarraHerramientas.razor.rz.scp.css */
.barra-herramientas[b-hxklmapmdn] {
    /* Dimensiones y Posición */
    width: 60px;
    /* Ancho fijo estrecho */
    height: 100vh;

    /* GLASSMORPHISM */
    background: rgba(31, 41, 55, 0.95);
    /* Fondo oscuro semi-transparente */
    backdrop-filter: blur(12px);
    /* Desefonque para efecto cristal */
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    flex-direction: column;
    /* Uno debajo del otro */
    align-items: center;
    /* Centrados horizontalmente */
    padding-top: 1.5rem;
    /* Espacio arriba */
    gap: 1.5rem;
    /* Espacio entre botones */

    /* Sombra para darle profundidad sobre el contenido */
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    /* Asegura que esté por encima si es necesario */
}

/* 
   Los estilos de los botones ahora son manejados por BotonNavegacion.razor.css
   Esto asegura consistencia y reutilización.
*/
/* _content/Maxima.UI.Library/BotonNavegacion.razor.rz.scp.css */
/* BotonNavegacion.razor.css */

/* --- 1. ESTADO NORMAL (INACTIVO) --- */
.btn-formal-dark[b-cf7frhayfm] {
    /* Fondo muy sutil (casi transparente) */
    background-color: rgba(255, 255, 255, 0.05) !important;
    /* TEXTO BLANCO (Esto es lo que pediste) */
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 6px;
    padding: 12px 20px;
    margin-bottom: 8px;
    width: 100%;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.2s ease-in-out;
}

/* --- 2. HOVER (PASAR MOUSE) --- */
.btn-formal-dark:hover[b-cf7frhayfm] {
    background-color: rgba(255, 255, 255, 0.15) !important;
    /* Un poco más claro */
    color: #FFFFFF !important;
    /* Aseguramos que siga blanco */
    transform: translateX(4px);
}

/* --- 3. ACTIVO (SELECCIONADO) --- */
.active.btn-formal-dark[b-cf7frhayfm] {
    /* Fondo BLANCO */
    background-color: #FFFFFF !important;
    /* Texto AZUL (Para contraste) */
    color: #2563EB !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Iconos Normales (Blancos) */
.btn-formal-dark i[b-cf7frhayfm],
.btn-formal-dark span[b-cf7frhayfm] {
    font-size: 1.2rem;
    margin-right: 16px;
    color: #FFFFFF !important;
    /* Forzamos blanco también en íconos */
    opacity: 0.9;
}

/* Iconos Activos (Azules) */
.active.btn-formal-dark i[b-cf7frhayfm],
.active.btn-formal-dark span[b-cf7frhayfm] {
    opacity: 1;
    color: #2563EB !important;
}

/* --- ESTADO COLAPSADO --- */
.btn-formal-dark.collapsed[b-cf7frhayfm] {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.btn-formal-dark.collapsed i[b-cf7frhayfm],
.btn-formal-dark.collapsed span[b-cf7frhayfm] {
    margin-right: 0;
}
/* _content/Maxima.UI.Library/CampoBusqueda.razor.rz.scp.css */
/* CampoBusqueda.razor.css */

.busqueda-wrapper[b-dpuytmko3c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Use Primary Color for border or neutral if preferred. I'll use a neutral border that glows primary on focus */
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--bg-surface);
    padding: 0;
    width: 100%;
    /* max-width is handled by container usually, but good to have a default */
    max-width: 100%;
    height: 48px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.busqueda-wrapper:focus-within[b-dpuytmko3c] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.input-sin-borde[b-dpuytmko3c] {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    height: 100%;
    width: 100%;
}

.input-sin-borde[b-dpuytmko3c]::placeholder {
    color: var(--text-secondary);
}

.btn-buscar[b-dpuytmko3c] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    height: 100%;
    padding: 0 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.btn-buscar:hover[b-dpuytmko3c] {
    background-color: var(--primary-hover);
}

.btn-buscar:active[b-dpuytmko3c] {
    transform: scale(0.95);
}

/* Responsiveness handled by flexbox mostly, but can adjust padding for small screens */
@media (max-width: 576px) {
    .busqueda-wrapper[b-dpuytmko3c] {
        height: 42px;
    }

    .input-sin-borde[b-dpuytmko3c] {
        padding-left: 1rem;
    }

    .btn-buscar[b-dpuytmko3c] {
        padding: 0 1rem;
    }
}
/* _content/Maxima.UI.Library/FilterPanel.razor.rz.scp.css */
/* --- Capa de Oscurecimiento y Blur (Backdrop) --- */
.filter-backdrop[b-e0emtl5dhu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    /* Oscurece el canvas */
    backdrop-filter: blur(8px);
    /* Aplica el desenfoque al fondo */
    -webkit-backdrop-filter: blur(8px);
    /* Soporte para Safari */
    z-index: 2999;
    /* Justo debajo del panel */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.filter-backdrop.active[b-e0emtl5dhu] {
    opacity: 1;
    visibility: visible;
}

/* --- Panel de Filtros --- */
.filter-drawer[b-e0emtl5dhu] {
    position: fixed;
    top: 0;
    right: -450px;
    /* Escondido */
    width: 420px;
    height: 100vh;
    background-color: #ffffff;
    /* Sólido para que el blur no lo afecte */
    z-index: 3000;
    /* Siempre por encima del backdrop */
    transition: right 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.filter-drawer.open[b-e0emtl5dhu] {
    right: 0;
}

/* --- Estilos de Cabecera y Cuerpo --- */
.filter-header[b-e0emtl5dhu] {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-body[b-e0emtl5dhu] {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
}

.filter-section[b-e0emtl5dhu] {
    margin-bottom: 30px;
}

.filter-label[b-e0emtl5dhu] {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #8c98a5;
    margin-bottom: 14px;
    display: block;
    letter-spacing: 0.5px;
}

/* --- Opciones de Selección --- */
.custom-select[b-e0emtl5dhu] {
    border: 2px solid #f2f4f7;
    background-color: #f9fafb;
    border-radius: 10px;
    padding: 12px;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-radio-option[b-e0emtl5dhu] {
    padding: 14px 18px;
    border: 2px solid #f2f4f7;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.2s ease;
    background: white;
    margin-bottom: 8px;
}

.filter-radio-option:hover[b-e0emtl5dhu] {
    border-color: #e4e7eb;
}

.filter-radio-option.active[b-e0emtl5dhu] {
    border-color: #007bff;
    background: #f0f7ff;
    color: #007bff;
    font-weight: 600;
}

.radio-dot[b-e0emtl5dhu] {
    width: 14px;
    height: 14px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    background: white;
}

.filter-radio-option.active .radio-dot[b-e0emtl5dhu] {
    border-color: #007bff;
    background: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
}

/* --- Footer --- */
.filter-footer[b-e0emtl5dhu] {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
}

.btn-clear[b-e0emtl5dhu] {
    flex: 1;
    background: white;
    border: 1px solid #dee2e6;
    color: #495057;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
}

.btn-apply[b-e0emtl5dhu] {
    flex: 2;
    background: #007bff;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
}
/* _content/Maxima.UI.Library/FormSideNav.razor.rz.scp.css */
/* FormSideNav.razor.css */

.sidenav-wrapper[b-d0w0me97t4] {
    background-color: var(--bg-surface);
    height: 100%;
    min-height: 100vh;
    /* Fill full height */
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.nav-container[b-d0w0me97t4] {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 2rem;
}

/* TÍTULOS DE CATEGORÍA (Role-based headers) */
[b-d0w0me97t4] .sidenav-category-header {
    display: flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem 0.35rem 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 0.1rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    border-radius: 6px;
    user-select: none;
}

/* Comercial — azul */
[b-d0w0me97t4] .sidenav-category--comercial {
    color: #1565c0;
    background-color: #e3f2fd;
}

/* Logístico — verde */
[b-d0w0me97t4] .sidenav-category--logistico {
    color: #1b5e20;
    background-color: #e8f5e9;
}

/* Clasificación Arancelaria — ámbar */
[b-d0w0me97t4] .sidenav-category--arancelario {
    color: #e65100;
    background-color: #fff3e0;
}

/* Importación — gris */
[b-d0w0me97t4] .sidenav-category--importacion {
    color: #37474f;
    background-color: #eceff1;
}

/* TÍTULOS legacy (backward compat) */
[b-d0w0me97t4] .sidenav-header {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem 0.5rem;
    margin-top: 0.5rem;
    user-select: none;
}


/* ENLACES (Items) */
[b-d0w0me97t4] .sidenav-item {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    text-align: left;
    border-left: 3px solid transparent;
    cursor: pointer;
    display: flex;
    /* Flex for better alignment if icons are added */
    align-items: center;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

/* Hover */
[b-d0w0me97t4] .sidenav-item:hover {
    background-color: var(--bg-body);
    color: var(--primary-color);
}

/* ESTADO ACTIVO */
[b-d0w0me97t4] .sidenav-item.active {
    background-color: var(--primary-light);
    /* Lighter background for active state */
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* --- RESPONSIVIDAD (Móviles y Tablets) --- */
@media (max-width: 991.98px) {
    .sidenav-wrapper[b-d0w0me97t4] {
        min-height: auto;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-top: 0;
        background-color: var(--bg-surface);
        position: relative;
        top: 0;
        z-index: 9;
    }

    .nav-container[b-d0w0me97t4] {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        padding: 10px 15px;
        margin: 0;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Ocultar barra de scroll para estética limpia en webkit */
    .nav-container[b-d0w0me97t4]::-webkit-scrollbar {
        height: 0px;
        background: transparent;
    }

    [b-d0w0me97t4] .sidenav-header,
    [b-d0w0me97t4] .sidenav-category-header,
    [b-d0w0me97t4] .sidenav-sub-heading {
        display: none !important;
    }

    [b-d0w0me97t4] .sidenav-sub-item {
        padding-left: 0 !important;
        display: inline-block;
    }

    [b-d0w0me97t4] .sidenav-item {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 18px !important;
        border-left: none;
        border: 1px solid #dee2e6;
        border-radius: 25px;
        /* Estilo de pastilla/pill */
        white-space: nowrap;
        font-size: 0.85rem;
        height: 100%;
        min-height: 40px;
        background-color: #f8f9fa;
        color: #495057;
        /* Asegurar que el click área funcione bien y no suba/baje */
        border-bottom: 1px solid #dee2e6;
    }

    [b-d0w0me97t4] .sidenav-item:hover {
        background-color: var(--bg-body);
        color: var(--text-primary);
        border-bottom: 1px solid var(--text-primary);
    }

    [b-d0w0me97t4] .sidenav-item.active {
        background-color: var(--primary-color, #0d6efd) !important;
        color: #fff !important;
        border-color: var(--primary-color, #0d6efd) !important;
        border-bottom: 1px solid var(--primary-color, #0d6efd) !important;
        border-left: none;
        font-weight: 600;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }
}
/* _content/Maxima.UI.Library/MbExcelGrid.razor.rz.scp.css */
.excel-wrapper[b-kujr2hoofr] {
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.excel-table[b-kujr2hoofr] {
    font-size: 0.85rem;
    border-collapse: separate;
    border-spacing: 0;
}

.excel-table thead th[b-kujr2hoofr] {
    background-color: #f8f9fa;
    color: #6c757d;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 12px 8px;
    white-space: nowrap;
    border-bottom: 2px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 10;
}

.excel-table tbody td[b-kujr2hoofr] {
    padding: 0;
    height: 38px;
    vertical-align: middle;
    border-color: #e9ecef;
}

/* --- Estilos de Celdas --- */
.currency-cell[b-kujr2hoofr] {
    background-color: #fcfaff !important;
    /* Morado muy muy suave */
}

.excel-input[b-kujr2hoofr] {
    width: 100%;
    height: 38px;
    /* Altura completa de la celda */
    border: none;
    background: transparent;
    padding: 0 10px;
    outline: none;
    color: #333;
    font-family: inherit;
}

.excel-input:focus[b-kujr2hoofr] {
    box-shadow: inset 0 0 0 2px #4a90e2;
    /* Borde azul de edición */
    background: white;
}

.custom-check[b-kujr2hoofr] {
    margin-top: 0;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
}

.input-symbol-wrapper[b-kujr2hoofr] {
    display: flex;
    align-items: center;
    height: 100%;
}

.input-symbol-wrapper .symbol[b-kujr2hoofr] {
    padding-left: 8px;
    color: #adb5bd;
    font-size: 0.8rem;
}

.selected-cell[b-kujr2hoofr] {
    position: relative;
    box-shadow: inset 0 0 0 2px #4a90e2;
    /* Blue border around the cell */
    z-index: 5;
    /* Ensure it stays on top */
}
/* _content/Maxima.UI.Library/MbModal.razor.rz.scp.css */
/* Animación de entrada suave */
.animate-modal[b-tw9ccfroz4] {
    animation: slideUpFade-b-tw9ccfroz4 0.3s ease-out forwards;
}

@keyframes slideUpFade-b-tw9ccfroz4 {
    0% {
        opacity: 0;
        transform: translate(0, 20px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* Ajustes visuales para Clean Enterprise */
.modal-content[b-tw9ccfroz4] {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-header[b-tw9ccfroz4] {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.modal-title[b-tw9ccfroz4] {
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

/* Backdrop con desenfoque (Efecto Glass opcional) */
.modal-backdrop[b-tw9ccfroz4] {
    background-color: rgba(30, 41, 59, 0.6);
    /* Color #1e293b con opacidad */
    backdrop-filter: blur(2px);
}
/* _content/Maxima.UI.Library/ProfitCalc.razor.rz.scp.css */
.profit-calc-container[b-b7romvo2t1] {
    width: 100%;
    max-width: 380px;
    min-width: 300px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.2);
}

.profit-calc-container.is-pinned[b-b7romvo2t1] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.ls-1[b-b7romvo2t1] {
    letter-spacing: 1px;
}

/* Animation Utilities */
.animate-fade-in[b-b7romvo2t1] {
    animation: fadeInUp-b-b7romvo2t1 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

.delay-1[b-b7romvo2t1] {
    animation-delay: 0.1s;
}

.delay-2[b-b7romvo2t1] {
    animation-delay: 0.2s;
}

.delay-3[b-b7romvo2t1] {
    animation-delay: 0.3s;
}

@keyframes fadeInUp-b-b7romvo2t1 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/Maxima.UI.Library/SearchableDropdown.razor.rz.scp.css */
.searchable-dropdown-container[b-ib4q6hytwt] {
    position: relative;
    user-select: none;
}

.dropdown-input-wrapper[b-ib4q6hytwt] {
    position: relative;
    cursor: pointer;
}

.dropdown-input-wrapper input[b-ib4q6hytwt] {
    cursor: pointer;
    background-color: var(--bg-elevated, #f8f9fa) !important;
    color: var(--text-primary, #212529) !important;
    /* bg-gray-input equivalent */
    padding-right: 30px;
    /* Space for arrow */
}

.dropdown-arrow[b-ib4q6hytwt] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary, #6c757d);
    transition: transform 0.2s;
    pointer-events: none;
}

.is-open .dropdown-arrow[b-ib4q6hytwt] {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu[b-ib4q6hytwt] {
    max-height: 300px;
    display: flex;
    /* flex column for sticky header */
    flex-direction: column;
    background-color: var(--bg-surface, #ffffff);
    border: 1px solid var(--border-color, rgba(0,0,0,.15));
}

.dropdown-items-scroll[b-ib4q6hytwt] {
    overflow-y: auto;
    max-height: 250px;
}

.dropdown-item[b-ib4q6hytwt] {
    color: var(--text-primary, #212529);
}

.dropdown-item.active[b-ib4q6hytwt],
.dropdown-item:active[b-ib4q6hytwt] {
    background-color: var(--primary-color, #212529);
    /* Dark theme compatible */
    color: white;
}

.dropdown-item:hover[b-ib4q6hytwt] {
    background-color: var(--bg-elevated, #e9ecef);
    color: var(--text-primary, #212529);
}

/* Custom scrollbar for better look */
.dropdown-items-scroll[b-ib4q6hytwt]::-webkit-scrollbar {
    width: 6px;
}

.dropdown-items-scroll[b-ib4q6hytwt]::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-items-scroll[b-ib4q6hytwt]::-webkit-scrollbar-thumb {
    background: var(--border-color, #ced4da);
    border-radius: 4px;
}

.dropdown-items-scroll[b-ib4q6hytwt]::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary, #adb5bd);
}
/* _content/Maxima.UI.Library/TarjetaDato.razor.rz.scp.css */
/* --- Estilos Generales de Tarjeta (Base) --- */
.card[b-w0y8dm85p1] {
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Por defecto asumimos estructura base, pero los colores vienen de modificadores */
}

/* --- Estilo Tarjeta Oscura (Blue/Dark) --- */
.dark-card[b-w0y8dm85p1] {
    background-color: #1e2a38;
    color: #ffffff;
}

/* --- Estructura Específica de Stat Card --- */
.stat-card[b-w0y8dm85p1] {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* Asegura que llene el contenedor padre */
}

.stat-label[b-w0y8dm85p1] {
    font-size: 0.85rem;
    color: #aab2bd;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value[b-w0y8dm85p1] {
    font-size: 1.8rem;
    font-weight: 700;
}
/* _content/Maxima.UI.Library/TarjetaIcono.razor.rz.scp.css */
/* TarjetaIcono.razor.css */

.shortcut-btn[b-btas6d861y] {
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    height: 100%;
    /* Fill container */
    background-color: var(--bg-surface, #ffffff);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    /* Ensure button takes full width of grid cell */
}

.shortcut-btn:hover[b-btas6d861y] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shortcut-content[b-btas6d861y] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-container[b-btas6d861y] {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Font size for icons can be inherited or set here */
    font-size: 2rem;
    /* fs-2 equivalent */
}

/* Icon Colors */
.blue-icon[b-btas6d861y] {
    color: #4a90e2;
}

.green-icon[b-btas6d861y] {
    color: #50e3c2;
}

.purple-icon[b-btas6d861y] {
    color: #9013fe;
}

.orange-icon[b-btas6d861y] {
    color: #f5a623;
}

.shortcut-label[b-btas6d861y] {
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary, #555);
}
