/* ============================================================
   DISEÑO PREMIUM STITCH - ÓPTICA TATIANA
   ============================================================ */

:root {
    --st-primary: #1173d4; /* Azul Stich Premium */
    --st-bg: #f8fafc;
    --st-white: #ffffff;
    --st-shadow: 0 8px 32px 0 rgba(17, 115, 212, 0.08);
    --st-glass-bg: rgba(255, 255, 255, 0.7);
    --st-border: rgba(255, 255, 255, 0.18);
}

#view-proveedores {
    background-color: var(--st-bg);
    padding: 24px;
    font-family: 'Inter', 'Roboto', sans-serif !important;
}

/* Encabezado Premium Apple */
.st-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.st-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.st-header-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(17,115,212,0.12) 0%, rgba(17,115,212,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(17,115,212,0.12);
}

.st-header-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.st-header-subtitle {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 2px;
}

.btn-st-add-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--st-primary);
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(17, 115, 212, 0.25);
}

.btn-st-add-premium:hover {
    background: #0e63bd;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(17, 115, 212, 0.35);
}

.btn-st-add-premium:active {
    transform: translateY(0);
}

/* Barra de Búsqueda Premium */
.st-search-bar-premium {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
    flex-wrap: wrap;
}

.st-dashboard-header {
    animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.st-filter-row-unified {
    transition: all 0.3s ease;
}

.st-header-badge {
    transition: all 0.2s ease;
    cursor: default;
    border: 1px solid transparent !important;
}

.st-header-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background: white !important;
    border-color: rgba(0,0,0,0.05) !important;
}

.btn-st-mini-action:hover {
    background: #e2e8f0 !important;
    color: var(--st-primary) !important;
    transform: scale(1.05);
}

.st-quick-pill:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .st-filter-row-unified {
        flex-direction: column;
        align-items: stretch !important;
    }
    .st-filter-row-unified > * {
        width: 100% !important;
    }
}

.st-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 3;
    min-width: 200px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 9px 14px;
    transition: border-color 0.2s;
}

.st-search-input-wrap:focus-within {
    border-color: var(--st-primary);
    background: white;
}

.st-search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.93rem;
    color: #334155;
    width: 100%;
    font-family: inherit;
}

.st-search-input::placeholder { color: #b0bec5; }

.st-select-filter {
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #334155;
    background: #f8fafc;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    min-width: 160px;
}

.st-select-filter:focus { border-color: var(--st-primary); }

/* Barra de Navegación del detalle */
.st-detail-nav-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    flex-shrink: 0;
}

/* Selector rápido de proveedores */
.st-quick-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    padding-right: 4px;
}

.st-quick-switcher::-webkit-scrollbar { display: none; }

.st-quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.st-quick-pill:hover {
    border-color: var(--st-primary);
    color: var(--st-primary);
    background: rgba(17,115,212,0.06);
}

.st-quick-pill.active-prov {
    background: var(--st-primary);
    color: white;
    border-color: var(--st-primary);
    box-shadow: 0 4px 10px rgba(17,115,212,0.2);
}

.st-quick-pill .st-pill-avatar {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
}

.st-quick-pill-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    padding: 4px 8px;
    white-space: nowrap;
}

/* Card Glassmorphism */
.st-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Card Apple-Style XL - Inspirado en Citas Premium */
.st-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.82);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: visible; /* Para menús wa */
}

.st-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    border-color: rgba(17, 115, 212, 0.2);
}

/* Tarjeta con Deuda */
.st-card.st-card-debt {
    border-left: 3px solid #ef4444;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 250, 0.95) 100%);
}

.st-card.st-card-debt:hover {
    border-color: #dc2626;
    box-shadow: 0 20px 48px rgba(239, 68, 68, 0.1);
}

.st-provider-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.st-monto-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.st-category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08); /* Estilo Citas */
    color: #4338ca;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.st-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.st-status-paid { 
    background: rgba(34, 197, 94, 0.12); /* Confirmada style */
    color: #15803d; 
}

.st-status-overdue { 
    background: rgba(239, 68, 68, 0.12); /* Cancelada style */
    color: #b91c1c; 
}

/* Collapsible Section Style */
.st-collapsible-paid {
    grid-column: 1 / -1;
    margin-bottom: 8px;
}

.st-collapsible-trigger {
    background: white;
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 0.83rem;
    font-family: inherit;
}

.st-collapsible-trigger:hover {
    background: #f1f5f9;
    color: var(--st-primary);
    border-color: rgba(17,115,212,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.st-grid-paid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.prov-detail-view {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    opacity: 0;
    display: none !important;
    transition: opacity 0.3s ease;
    width: 100%;
}

.prov-detail-view.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#prov-grid-view.inactive {
    display: none !important;
}

.st-grid-paid .st-card {
    padding: 18px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    /* removed backdrop-filter */
    box-shadow: none;
    border: 1px dashed rgba(226, 232, 240, 0.7);
}

.st-grid-paid .st-monto-value {
    font-size: 1.1rem;
}

.st-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.st-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
}

.st-meta-item .material-symbols-outlined {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* === ESTADO DE CUENTA (DETAIL VIEW) PREMIUM === */

.st-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.st-summary-mini {
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.st-summary-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.st-summary-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
}

.st-invoice-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    padding: 24px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.st-invoice-card:hover { 
    border-color: var(--st-primary); 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.st-progress-container {
    height: 10px;
    background: #f1f5f9;
    border-radius: 12px;
    margin: 16px 0;
    overflow: hidden;
    position: relative;
}

.st-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--st-primary), #3b82f6);
    border-radius: 12px;
    transition: width 1s cubic-bezier(0.2, 0, 0, 1);
}

.st-invoice-top-actions {
    display: flex;
    gap: 8px;
}

.st-payment-timeline {
    margin-top: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.st-payment-timeline.active {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 10px;
}

.st-toggle-payment {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    padding: 8px 12px;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.2s;
    user-select: none;
    border: none;
}

.st-toggle-payment:hover {
    background: #f1f5f9;
    color: var(--st-primary);
}

.st-toggle-payment i {
    transition: transform 0.3s;
}

.st-toggle-payment.active i {
    transform: rotate(180deg);
}

.st-payment-item {
    padding: 14px 18px;
    border-left: 4px solid #10b981;
    background: #f8fafc;
    margin: 12px 0;
    border-radius: 0 14px 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.st-payment-method {
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-st-pay-action {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-st-pay-action:hover {
    background: #f1f5f9;
    color: var(--st-primary);
}

/* ==========================================
   MODALES PREMIUM (ESTILO APPLE)
   ========================================== */

.st-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    z-index: 200000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.st-modal-overlay.active, .st-modal-overlay.modal-open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.st-modal-content {
    background: rgba(255, 255, 255, 0.98);
    width: 90%;
    border-radius: 32px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(40px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.st-modal-overlay.active .st-modal-content {
    transform: scale(1) translateY(0);
}

.st-modal-header {
    background: white;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.st-modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.st-modal-title .material-symbols-outlined {
    font-size: 1.8rem;
    color: var(--st-primary);
    background: rgba(17,115,212,0.1);
    padding: 8px;
    border-radius: 12px;
}

.st-modal-close {
    background: #f1f5f9;
    border: none;
    color: #64748b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.st-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.st-modal-body {
    padding: 32px;
    overflow-y: auto;
    background: #ffffff;
    flex: 1;
}

.st-modal-section {
    background: #f8fafc;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

.st-modal-section-title {
    font-size: 0.85rem;
    font-weight: 900;
    color: #475569;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.st-modal-footer {
    padding: 24px 32px;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.04);
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

/* UI Elements inside Modal */
.st-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.st-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.st-field label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #64748b;
    padding-left: 4px;
}

.st-field input, .st-field select, .st-field textarea {
    padding: 14px 18px;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    background: white;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-field input:focus, .st-field select:focus, .st-field textarea:focus {
    border-color: var(--st-primary);
    box-shadow: 0 0 0 5px rgba(17,115,212,0.08);
    outline: none;
}

.st-field input::placeholder {
    color: #cbd5e1;
}

/* Buttons */
.btn-st-action {
    padding: 14px 28px;
    border-radius: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-st-action-primary {
    background: var(--st-primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(17,115,212,0.3);
}

.btn-st-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(17,115,212,0.4);
    filter: brightness(1.05);
}

.btn-st-action-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-st-action-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-st-action-danger {
    background: #fef2f2;
    color: #ef4444;
    border: 1.5px solid rgba(239, 68, 68, 0.1);
}

.btn-st-action-danger:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -5px rgba(239, 68, 68, 0.15);
}

/* Visual Payment Selectors */
.prov-pago-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.pago-opt-mini {
    padding: 14px 10px;
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 18px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
}

.pago-opt-mini img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

.pago-opt-mini.active {
    border-color: var(--st-primary);
    background: rgba(17,115,212,0.05);
    color: var(--st-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(17,115,212,0.1);
}

/* Dropdown Portal style */
.st-dropdown-portal {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    max-height: 280px;
    overflow-y: auto;
    z-index: 1010;
    padding: 10px;
}


/* === MANAGEMENT LIST (INSIDE MODAL) === */
.st-manage-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.st-manage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.st-manage-item:hover {
    border-color: var(--st-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.st-manage-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.st-manage-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.st-manage-name {
    font-weight: 800;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 2px;
}

.st-manage-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    display: flex;
    gap: 10px;
}

.st-manage-actions {
    display: flex;
    gap: 8px;
}

.btn-st-mini {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: #f1f5f9;
    color: #64748b;
}

.btn-st-mini:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: scale(1.1);
}

.btn-st-mini.delete:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* === DETAIL VIEW (STATE OF ACCOUNT) REFINEMENTS === */
.st-detail-container {
    padding: 32px 32px 80px 32px;
    background: #f8fafc;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.st-detail-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    background: white;
    padding: 24px 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.st-detail-profile {
    display: flex;
    gap: 20px;
    align-items: center;
}

.st-detail-avatar {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: var(--st-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.6rem;
    box-shadow: 0 8px 16px rgba(17,115,212,0.25);
}

.st-detail-title-group {
    display: flex;
    flex-direction: column;
}

.st-detail-main-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.st-detail-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
}

.st-detail-actions {
    display: flex;
    gap: 12px;
}
