body {
    font-family: 'Inter', 'Roboto', sans-serif; 
    background-color: #f4f6f8; 
    color: #1f2937; 
    margin: 0;
    padding: 20px; 
}

body.detail-open {
    overflow: hidden;
    min-height: 800px; /* Asegura que el iframe crezca cuando se abre el panel lateral */
}

.results-container { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dict-card { 
    background: #fdfcf8; 
    border-radius: 6px; 
    padding: 8px 12px; 
    margin-bottom: 6px; 
    border-left: 4px solid #cce3f6; 
    transition: all 0.3s ease; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    opacity: 0;
    animation: fadeInSlideUp 0.2s ease-out forwards;
}

.dict-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left-color: #003f6b;
}

.hover-card { cursor: pointer; }
.vertical-divider { width: 1px; height: 24px; background-color: #e2e8f0; margin: 0 4px; }


.dict-terms-row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
    margin-bottom: 8px; 
    align-items: flex-start; 
}

.dict-term-es { 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: #1e293b; 
    margin-right: 8px; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}

.dict-terms-row > div:not(:last-child)::after {
    content: "|";
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 300;
    margin-left: 16px;
}

.dict-term-en, .dict-term-pt { 
    font-size: 1.05rem; 
    color: #475569; 
    display: flex; 
    align-items: center; 
    gap: 4px; 
}

.lang-badge { 
    font-size: 0.7rem; 
    font-weight: 700; 
    padding: 2px 6px; 
    border-radius: 4px; 
    color: #475569;
    flex-shrink: 0;
}

.lang-badge.es { 
    background: #fef3c7; 
    color: #b45309; 
    border: 1px solid #fde68a;
}

.lang-badge.en { 
    background: #dbeafe; 
    color: #1e40af; 
    border: 1px solid #bfdbfe;
}

.lang-badge.pt { 
    background: #dcfce7; 
    color: #166534; 
    border: 1px solid #bbf7d0;
}

.dict-definition { 
    font-size: 0.9rem; 
    line-height: 1.4; 
    color: #334155; 
    padding-top: 8px; 
    border-top: 1px dashed #cbd5e1; 
    margin-top: 2px;
}

.dict-def-label { 
    font-weight: 600; 
    color: #64748b; 
    margin-right: 6px; 
}

/* MENSAJES (Importados desde Fuentes) */
.message {
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.message i { 
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.9;
    display: inline-block;
}
.message h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}
.message-warning {
    background: #ebf8ff;
    border: 1px solid #bee3f8;
    color: #2b6cb0;
}
.message-warning i { color: #3182ce; }

.search-header-area { margin-bottom: 20px; }
.header-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
.chip { font-size: 0.9rem; padding: 6px 12px; border-radius: 20px; display: flex; align-items: center; gap: 6px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.chip-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.chip-primary { background: #cce5ff; color: #004085; border: 1px solid #b8daff; }
.chip-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.aviso-db { padding: 12px 16px; border-radius: 6px; font-size: 0.9rem; margin-top: 10px; }
.aviso-glosario { background-color: #e2e3e5; color: #383d41; border: 1px solid #d6d8db; }
.aviso-diccionario { background-color: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

.catalog-cta { display: flex; align-items: center; justify-content: space-between; background: #fff; padding: 20px 25px; border-radius: 8px; border: 1px solid #e1e4e8; border-left: 4px solid #fdb913; box-shadow: 0 2px 4px rgba(0,0,0,0.03); margin-bottom: 25px; }
.catalog-cta-text { display: flex; align-items: center; gap: 15px; }
.catalog-cta-text i { font-size: 2rem; color: #fdb913; }
.catalog-cta-info { display: flex; flex-direction: column; }
.catalog-cta-title { font-size: 1.15rem; color: #2c3e50; }
.catalog-cta-sub { font-size: 0.85rem; color: #5a7a7d; margin-top: 2px; }

.catalog-btn { background: linear-gradient(135deg, #17a2b8, #138496); border: none; color: white; padding: 10px 20px; border-radius: 6px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 2px 4px rgba(23,162,184,0.2); }
.catalog-btn:hover { background: linear-gradient(135deg, #138496, #117a8b); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(23,162,184,0.3); }

.global-search-row { margin-top: 8px !important; padding-top: 8px !important; border-top: 1px dashed #e1e4e8; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.global-search-label { font-size: 0.8rem; color: #777; font-style: italic; }
.action-btn { padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 5px; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.btn-global { background: #f6f4f9; border: 1px solid #dcd3e6; color: #6a5a85; }
.btn-global:hover { background: #6a5a85; border-color: #55486a; color: #ffffff; box-shadow: 0 4px 8px rgba(106, 90, 133, 0.2); transform: translateY(-1px); }

/* --- Botón LOD --- */
.btn-lod { background: #fdfaf6; border: 1px solid #d3cbb8; color: #85724a; }
.btn-lod:hover { background: #85724a; border-color: #6a5b3a; color: #ffffff; box-shadow: 0 4px 8px rgba(133, 114, 74, 0.2); transform: translateY(-1px); }

/* --- Botón Grafo --- */
.btn-graph { background: #f0fdfa; border: 1px solid #99f6e4; color: #0f766e; }
.btn-graph:hover { background: #0f766e; border-color: #0f766e; color: #ffffff; box-shadow: 0 4px 8px rgba(15, 118, 110, 0.2); transform: translateY(-1px); }

/* --- Botón Auditoría --- */
.btn-audit { background: #fdf4ff; border: 1px solid #f5d0fe; color: #86198f; }
.btn-audit:hover { background: #86198f; border-color: #86198f; color: #ffffff; box-shadow: 0 4px 8px rgba(134, 25, 143, 0.2); transform: translateY(-1px); }

/* --- Botón Traductor --- */
.btn-translate { background: #fdf2f8; border: 1px solid #fbcfe8; color: #be185d; }
.btn-translate:hover { background: #be185d; border-color: #be185d; color: #ffffff; box-shadow: 0 4px 8px rgba(190, 24, 93, 0.2); transform: translateY(-1px); }

/* --- Botón Ficha Técnica --- */
.btn-datasheet { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.btn-datasheet:hover { background: #166534; border-color: #166534; color: #ffffff; box-shadow: 0 4px 8px rgba(22, 101, 52, 0.2); transform: translateY(-1px); }

/* --- LOD Panel --- */
.lod-panel { margin-top: 12px; padding: 16px; background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 0.9rem; animation: lodFadeIn 0.3s ease; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
@keyframes lodFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.lod-loading { color: #64748b; font-style: italic; display: flex; align-items: center; gap: 8px; }
.lod-error { color: #ef4444; display: flex; align-items: center; gap: 8px; }
.lod-content { display: flex; gap: 16px; align-items: flex-start; }
.lod-thumbnail { width: 120px; height: auto; border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); object-fit: cover; }
.lod-text { flex: 1; min-width: 0; }
.lod-text h4 { margin: 0 0 8px 0; font-size: 1rem; color: #1e293b; border-bottom: 1px solid #e2e8f0; padding-bottom: 4px; display: inline-block; }
.lod-text p { color: #475569; line-height: 1.5; margin-bottom: 12px; font-size: 0.95rem; }
.lod-link { color: #0284c7; text-decoration: none; font-weight: 500; font-size: 0.9rem; }
.lod-link:hover { text-decoration: underline; color: #0369a1; }

/* --- Audit Panel --- */
.audit-panel { margin-top: 12px; padding: 12px 16px; border-radius: 6px; font-size: 0.9rem; animation: lodFadeIn 0.3s ease; display: flex; align-items: flex-start; gap: 12px; border: 1px solid transparent; }
.audit-panel i.main-icon { font-size: 1.5rem; margin-top: 2px; }
.audit-content { flex: 1; }
.audit-content h4 { margin: 0 0 4px 0; font-size: 1rem; }
.audit-content p { margin: 0; color: #475569; line-height: 1.4; }
.audit-content a { color: inherit; font-weight: 600; text-decoration: underline; }
.audit-loading { background: #f8fafc; border-color: #e2e8f0; color: #64748b; }
.audit-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.audit-success i.main-icon { color: #22c55e; }
.audit-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.audit-warning i.main-icon { color: #f59e0b; }
.audit-missing { background: #f8fafc; border-color: #e2e8f0; color: #475569; }
.audit-missing i.main-icon { color: #94a3b8; }

/* --- Polyglot Panel --- */
.polyglot-panel { margin-top: 12px; padding: 16px; background-color: #f8fafc; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 0.9rem; animation: lodFadeIn 0.3s ease; }
.polyglot-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #e2e8f0; color: #1e293b; font-weight: bold; font-size: 1rem; }
.polyglot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.polyglot-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 4px; padding: 8px 12px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.polyglot-lang { display: flex; align-items: center; gap: 8px; font-weight: 500; color: #475569; width: 35%; font-size: 0.95rem; }
.polyglot-term { color: #0f172a; font-weight: 600; flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.95rem; }
.polyglot-copy { color: #64748b; cursor: pointer; transition: color 0.2s; background: none; border: none; font-size: 1rem; padding: 4px; margin-left: 8px; }
.polyglot-copy:hover { color: #0284c7; }
.polyglot-copy.copied { color: #22c55e; }

/* --- Datasheet Panel --- */
.datasheet-panel { margin-top: 12px; background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 0.9rem; animation: lodFadeIn 0.3s ease; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.datasheet-header { padding: 12px 16px; background-color: #f8fafc; border-bottom: 1px solid #e2e8f0; color: #1e293b; font-weight: bold; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.datasheet-table { width: 100%; border-collapse: collapse; }
.datasheet-table th, .datasheet-table td { padding: 10px 16px; text-align: left; border-bottom: 1px solid #f1f5f9; }
.datasheet-table th { background-color: #fcfcfc; color: #475569; font-weight: 600; width: 35%; border-right: 1px solid #f1f5f9; }
.datasheet-table td { color: #0f172a; font-family: monospace; font-size: 0.95rem; }
.datasheet-table tr:last-child th, .datasheet-table tr:last-child td { border-bottom: none; }

/* --- Paginacion (Copied from catalogo.css) --- */
.pag-wrapper { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 40px 0 20px; padding-top: 20px; border-top: 1px solid #e1e4e8; }
.pag-controls { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; justify-content: center; }
.pag-btn { background: #fff; border: 1px solid #dbe3ea; color: #475569; padding: 6px 12px; border-radius: 6px; cursor: pointer; transition: all 0.2s; font-size: 0.85rem; font-weight: 600; }
.pag-btn:hover { background: #f1f5f9; border-color: #cbd5e1; color: #1e293b; }
.pag-btn.active { background: #3b82f6; border-color: #3b82f6; color: white; }
.pag-info { font-size: 0.85rem; color: #64748b; font-weight: 500; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .global-search-label {
        display: none !important;
    }
}

/* --- Panel Lateral --- */
.detail-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity 0.16s ease, visibility 0.16s ease; z-index: 1000; }
.detail-overlay.active { opacity: 1; visibility: visible; }
.detail-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(680px, 100vw); background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,0.15); z-index: 1001; transform: translateX(100%); transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1); display: flex; flex-direction: column; }
.detail-panel.active { transform: translateX(0); }
.panel-header { padding: 18px 22px; background: linear-gradient(135deg, #26323f 0%, #343a40 60%, #2f4a43 100%); color: white; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset; }
.panel-title { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 600; line-height: 1.25; margin-bottom: 8px; color: #f8fafc; }
.panel-submeta { font-size: 0.9rem; color: #cbd5e1; display: flex; flex-wrap: wrap; gap: 12px; }
.close-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 6px 10px; border-radius: 6px; cursor: pointer; transition: 0.2s; }
.close-btn:hover { background: rgba(255,255,255,0.2); }
.panel-tools { padding: 12px 22px; background: #f8fafc; border-bottom: 1px solid #e2e8f0; display: flex; gap: 8px; flex-wrap: wrap; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }

/* --- Dashboard UI --- */
.dashboard-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.dash-btn {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 4px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.1;
    color: #475569;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.dash-btn i {
    font-size: 1.2rem;
    transition: all 0.2s ease;
}
.dash-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Colors for specific dashboard cards */
.dash-context i { color: #f59e0b; }
.dash-context:hover { border-color: #f59e0b; }
.dash-context.active { border-color: #f59e0b; background: #fffbeb; color: #d97706; }
.dash-context.active i { color: #d97706; }

.dash-translate i { color: #ec4899; }
.dash-translate:hover { border-color: #ec4899; }
.dash-translate.active { border-color: #ec4899; background: #fdf2f8; color: #db2777; }
.dash-translate.active i { color: #db2777; }

.dash-datasheet i { color: #10b981; }
.dash-datasheet:hover { border-color: #10b981; }
.dash-datasheet.active { border-color: #10b981; background: #ecfdf5; color: #059669; }
.dash-datasheet.active i { color: #059669; }

.dash-graph i { color: #0ea5e9; }
.dash-graph:hover { border-color: #0ea5e9; }
.dash-graph.active { border-color: #0ea5e9; background: #f0f9ff; color: #0284c7; }
.dash-graph.active i { color: #0284c7; }
.panel-body { padding: 18px 22px 26px; overflow-y: auto; flex: 1; background: #ffffff; }
.empty-state { text-align: center; padding: 60px 20px; color: #64748b; }
.page-btn:disabled { color: #94a3b8; border-color: #e2e8f0; background: #f8fafc; cursor: default; }

.pagination { display: flex; justify-content: center; gap: 8px; margin: 30px 0 20px; flex-wrap: wrap; align-items: center; }
.page-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 40px;
    text-align: center;
}
.page-btn:hover:not(:disabled) {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}
.page-btn.active {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
}

.page-dots { color: #64748b; padding: 0 4px; font-weight: bold; }

/* --- Graph Modal --- */
.graph-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(15, 23, 42, 0.85); z-index: 10000; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(4px); }
.graph-modal-content { background: white; width: 98%; max-width: 2400px; height: 94vh; border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); animation: graphModalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes graphModalPop { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.graph-modal-header { background: #f8fafc; padding: 16px 24px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; }
.graph-modal-header h3 { margin: 0; color: #1e293b; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.graph-modal-header h3 i { color: #0284c7; }
.graph-close-btn { background: none; border: none; font-size: 1.5rem; color: #64748b; cursor: pointer; transition: 0.2s; padding: 0; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; }
.graph-close-btn:hover { background: #e2e8f0; color: #0f172a; }
.graph-loading { padding: 40px; text-align: center; color: #64748b; font-size: 1.1rem; }
.graph-error { padding: 40px; text-align: center; color: #ef4444; font-size: 1.1rem; }
.graph-container { flex: 1; width: 100%; height: 100%; background: #fcfcfc; position: relative; }
.graph-legend { position: absolute; bottom: 20px; right: 20px; background: rgba(255,255,255,0.9); border: 1px solid #cbd5e1; padding: 8px 14px; border-radius: 20px; font-size: 0.85rem; color: #475569; font-weight: 500; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); pointer-events: none; z-index: 10; display: flex; align-items: center; gap: 6px; }

.page-dots { color: #64748b; padding: 0 4px; font-weight: bold; }
.pag-info { color: #64748b; font-size: 0.88rem; text-align: center; }

.pag-goto { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; }
.pag-goto label { color: #555; font-size: 0.9rem; font-weight: 500; }
.pag-goto input { width: 70px; padding: 6px 10px; border: 2px solid #dee2e6; border-radius: 6px; text-align: center; font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; }
.pag-goto input:focus { border-color: #0072bb; }
.pag-goto-btn { background: #343a40; color: white; border: none; border-radius: 6px; padding: 6px 14px; font-size: 0.9rem; cursor: pointer; transition: 0.2s; }
.pag-goto-btn:hover { background: #52796f; }

/* BOTON SCROLL FAB (Nativo del iframe) */
.scroll-fab { position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(61,107,94,0.85); color: #fff; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; opacity: 0; pointer-events: none; z-index: 89; box-shadow: 0 4px 12px rgba(61,107,94,0.25); backdrop-filter: blur(4px); transition: opacity 0.34s ease, transform 0.3s, background 0.3s, box-shadow 0.3s; outline: none; }
.scroll-fab.visible { opacity: 1; pointer-events: auto; }
.scroll-fab:hover { background: rgba(61,107,94,1); transform: scale(1.08); box-shadow: 0 6px 16px rgba(61,107,94,0.4); }

@media (max-width: 768px) {
    .dict-terms-row > div:not(:last-child)::after {
        content: none;
    }
}
.scroll-fab i { transition: transform 0.32s ease, opacity 0.2s ease; }
.scroll-fab.direction-up i { transform: rotate(180deg); }

/* CABECERA DASHBOARD STICKY OSCURO (IDEA COMBINADA) */
.sticky-dashboard { position: sticky; top: 0; z-index: 100; background: #475569; color: white; padding: 16px 20px; margin: -20px -20px 20px -20px; border-bottom: 4px solid #0072bb; box-shadow: 0 4px 15px rgba(0,0,0,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.sd-left { flex: 1; min-width: 280px; }
.sd-title { margin: 0 0 6px 0; font-size: 1.25rem; font-weight: 700; color: #ffffff; display: flex; align-items: center; gap: 8px; }
.sd-info-icon { font-size: 1rem; color: #94a3b8; cursor: help; transition: color 0.2s; }
.sd-info-icon:hover { color: #38bdf8; }
.sd-subtitle { margin: 0; font-size: 0.95rem; color: #cbd5e1; }
.sd-highlight { color: #fbbf24; }
.sd-query { font-weight: 600; color: #38bdf8; font-style: italic; }
.sd-right { display: flex; align-items: center; }
.sd-catalog-btn { background: #0072bb; color: white; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 10px 20px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.1s; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); text-decoration: none; }
.sd-catalog-btn:hover { background: #0ea5e9; transform: translateY(-1px); }
@media (max-width: 600px) { .sticky-dashboard { padding: 12px 16px; flex-direction: column; align-items: flex-start; } .sd-right { width: 100%; } .sd-catalog-btn { width: 100%; justify-content: center; } }
