:root {
            --bg-base: #f8fafc;
            --bg-surface: #ffffff;
            --bg-card: #ffffff;
            --bg-card-subtle: #f1f5f9;
            --bg-card-hover: #f8fafc;
            --border-card: #e2e8f0;
            --border-subtle: #edf2f7;
            --aceler-primary: #4f46e5;
            --aceler-primary-hover: #4338ca;
            --aceler-light: #eef2ff;
            --zur-emerald: #059669;
            --zur-emerald-light: #ecfdf5;
            --zur-emerald-border: #a7f3d0;
            --text-heading: #0f172a;
            --text-primary: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --radius-xl: 14px;
            --radius-lg: 10px;
            --radius-md: 8px;
            --radius-sm: 6px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
            -webkit-font-smoothing: antialiased;
        }
        body {
            background-color: #f8fafc !important;
            color: #1e293b !important;
            min-height: 100vh;
            overflow: hidden;
        }
        .app-shell {
            display: flex;
            flex-direction: column;
            height: 100vh;
            background-color: #f8fafc;
        }
        .header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 28px;
            background: #ffffff !important;
            border-bottom: 1px solid #e2e8f0;
            height: 68px;
            min-height: 68px;
            z-index: 50;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        .header-brand-group {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .aceler-logo-wrapper {
            display: flex;
            align-items: center;
        }
        .aceler-brand-logo {
            height: 28px !important;
            max-height: 28px !important;
            width: auto !important;
            max-width: 150px !important;
            object-fit: contain !important;
            display: block;
        }
        .brand-divider {
            width: 1px;
            height: 24px;
            background: #e2e8f0;
        }
        .client-logo-wrapper {
            display: flex;
            align-items: center;
        }
        .client-logo {
            height: 30px !important;
            max-height: 30px !important;
            width: auto !important;
            max-width: 125px !important;
            object-fit: contain !important;
            display: block;
        }
        .header-center-info {
            display: flex;
            align-items: center;
        }
        .portal-badge {
            font-size: 0.88rem;
            font-weight: 700;
            color: #0f172a;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            padding: 6px 18px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .portal-badge-spark {
            color: #4f46e5;
            font-size: 0.95rem;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .connection-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #059669;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            padding: 6px 14px;
            border-radius: 20px;
        }
        .indicator-dot {
            width: 8px;
            height: 8px;
            background: #059669;
            border-radius: 50%;
            box-shadow: 0 0 6px #059669;
            animation: livePulse 2s infinite;
        }
        .btn-refresh-modern {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            color: #1e293b;
            padding: 7px 14px;
            border-radius: 8px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        .btn-refresh-modern:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
        }
        .btn-refresh-modern.spinning svg {
            animation: spin 0.7s linear infinite;
        }
        @keyframes spin {
            100% { transform: rotate(360deg); }
        }
        .dashboard-body {
            display: grid;
            grid-template-columns: 330px 1fr;
            flex: 1;
            height: calc(100vh - 68px);
            overflow: hidden;
            background-color: #f8fafc;
        }
        .sidebar-workers {
            background: #ffffff !important;
            border-right: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .sidebar-top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            border-bottom: 1px solid #e2e8f0;
        }
        .sidebar-top-bar h2 {
            font-size: 0.98rem;
            font-weight: 700;
            color: #0f172a;
        }
        .sidebar-meta {
            font-size: 0.75rem;
            color: #64748b;
        }
        .workers-count {
            background: #eef2ff;
            color: #4f46e5;
            border: 1px solid rgba(79, 70, 229, 0.2);
            padding: 3px 9px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        .sidebar-controls {
            padding: 12px 14px;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .filter-pills-row {
            display: grid;
            grid-template-columns: 1fr 1.1fr 1.1fr;
            gap: 4px;
            background: #e2e8f0;
            padding: 3px;
            border-radius: 8px;
        }
        .filter-btn {
            background: transparent;
            border: none;
            padding: 5px 6px;
            border-radius: 6px;
            font-size: 0.73rem;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: all 0.15s ease;
        }
        .filter-btn:hover {
            color: #0f172a;
        }
        .filter-btn.active {
            background: #ffffff;
            color: #4f46e5;
            font-weight: 700;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
        }
        .filter-badge {
            font-size: 0.68rem;
            background: rgba(0, 0, 0, 0.06);
            padding: 1px 5px;
            border-radius: 8px;
        }
        .filter-btn.active .filter-badge {
            background: #eef2ff;
            color: #4f46e5;
        }
        .search-sort-row {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .search-box {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 5px 8px;
        }
        .search-box svg {
            color: #94a3b8;
            flex-shrink: 0;
        }
        .search-box input {
            border: none;
            outline: none;
            font-size: 0.76rem;
            color: #1e293b;
            width: 100%;
            background: transparent;
        }
        .sort-select {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 5px 6px;
            font-size: 0.74rem;
            font-weight: 600;
            color: #334155;
            outline: none;
            cursor: pointer;
        }
        .sort-select:focus {
            border-color: #4f46e5;
        }
        .workers-list {
            flex: 1;
            overflow-y: auto;
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: #ffffff;
        }
        .worker-card-item {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 14px 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        .worker-card-item:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
        }
        .worker-card-item.active {
            background: #faf5ff !important;
            border-color: #4f46e5 !important;
            box-shadow: 0 0 0 1px #4f46e5, 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
        }
        .worker-card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 6px;
        }
        .worker-card-name {
            font-weight: 700;
            font-size: 0.92rem;
            color: #0f172a;
        }
        .worker-card-phone {
            font-size: 0.78rem;
            color: #64748b;
        }
        .status-chip, .worker-card-status {
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 6px;
            text-transform: uppercase;
        }
        .status-RECOPILANDO_DATOS { background: #f0f9ff !important; color: #0369a1 !important; border: 1px solid #bae6fd !important; }
        .status-CONFIRMACION { background: #fffbeb !important; color: #b45309 !important; border: 1px solid #fde68a !important; }
        .status-ESPERANDO_CEDULA { background: #f5f3ff !important; color: #6d28d9 !important; border: 1px solid #ddd6fe !important; }
        .status-ESPERANDO_FIRMA { background: #fefce8 !important; color: #a16207 !important; border: 1px solid #fef08a !important; }
        .status-COMPLETADO { background: #ecfdf5 !important; color: #047857 !important; border: 1px solid #a7f3d0 !important; }
        .worker-workspace {
            background: #f8fafc !important;
            padding: 24px 28px;
            overflow-y: auto;
            height: 100%;
        }
        .empty-workspace-view {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 65%;
            text-align: center;
            color: #64748b;
        }
        .empty-illustration {
            font-size: 3.5rem;
            margin-bottom: 14px;
            opacity: 0.4;
        }
        .empty-workspace-view h3 {
            color: #0f172a;
            font-size: 1.3rem;
            margin-bottom: 6px;
        }
        .empty-workspace-view p {
            font-size: 0.88rem;
            max-width: 440px;
            line-height: 1.5;
        }
        .worker-profile-card {
            background: #ffffff !important;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
        }
        .profile-left {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .avatar-circle {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: #eef2ff;
            border: 1px solid rgba(79, 70, 229, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
            color: #4f46e5;
        }
        .profile-badge-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }
        .rut-chip {
            font-size: 0.72rem;
            font-weight: 600;
            color: #64748b;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            padding: 3px 8px;
            border-radius: 5px;
        }
        .profile-info h1 {
            font-size: 1.35rem;
            font-weight: 800;
            color: #0f172a;
        }
        .profile-contact-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
        }
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 600;
            text-decoration: none;
            padding: 4px 10px;
            border-radius: 6px;
            transition: all 0.15s ease;
        }
        .btn-wa {
            background: #dcfce7;
            color: #15803d;
            border: 1px solid #86efac;
        }
        .btn-wa:hover {
            background: #bbf7d0;
            transform: translateY(-1px);
        }
        .btn-mail {
            background: #eff6ff;
            color: #1d4ed8;
            border: 1px solid #bfdbfe;
        }
        .btn-mail:hover {
            background: #dbeafe;
            transform: translateY(-1px);
        }
        .fundo-tag {
            background: #f1f5f9;
            color: #475569;
            border: 1px solid #e2e8f0;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
        }
        .profile-actions {
            display: flex;
            gap: 10px;
        }
        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .btn-sign-page {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            color: #1e293b;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        .btn-sign-page:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
            color: #4f46e5;
        }
        .btn-download-pdf {
            background: #059669;
            border: 1px solid #059669;
            color: #ffffff;
            box-shadow: 0 1px 3px rgba(5, 150, 105, 0.3);
        }
        .btn-download-pdf:hover {
            background: #047857;
            transform: translateY(-1px);
        }
        .btn-finalize {
            background: #4f46e5;
            border: 1px solid #4f46e5;
            color: #ffffff;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(79, 70, 229, 0.3);
        }
        .btn-finalize:hover {
            background: #4338ca;
            transform: translateY(-1px);
        }
        .badge-finalized {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            color: #065f46;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            animation: fadeIn 0.15s ease-out;
        }
        .modal-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px;
            max-width: 440px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            animation: scaleUp 0.15s ease-out;
        }
        .modal-icon-badge {
            width: 52px;
            height: 52px;
            background: #ecfdf5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        .modal-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }
        .modal-card p {
            font-size: 0.88rem;
            color: #475569;
            line-height: 1.5;
            margin-bottom: 24px;
        }
        .modal-actions-row {
            display: flex;
            gap: 12px;
            justify-content: center;
        }
        .btn-modal-cancel {
            padding: 10px 18px;
            border-radius: 8px;
            background: #f1f5f9;
            border: 1px solid #cbd5e1;
            color: #475569;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.15s;
        }
        .btn-modal-cancel:hover {
            background: #e2e8f0;
            color: #0f172a;
        }
        .btn-modal-confirm {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: 8px;
            background: #059669;
            border: 1px solid #059669;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.15s;
            box-shadow: 0 1px 3px rgba(5, 150, 105, 0.3);
        }
        .btn-modal-confirm:hover {
            background: #047857;
            transform: translateY(-1px);
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes scaleUp {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        .workspace-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 4px;
        }
        .tab-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 18px;
            border-radius: 8px 8px 0 0;
            background: transparent;
            border: 1px solid transparent;
            color: #64748b;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .tab-button:hover {
            color: #0f172a;
            background: #f1f5f9;
        }
        .tab-button.active {
            color: #4f46e5;
            background: #ffffff;
            border-color: #e2e8f0 #e2e8f0 transparent #e2e8f0;
            border-bottom: 2px solid #4f46e5;
        }
        .tab-badge {
            background: #eef2ff;
            color: #4f46e5;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 10px;
        }
        .tab-pane {
            display: none;
        }
        .tab-pane.active {
            display: block;
        }
        .details-layout-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 18px;
        }
        .form-categories-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .category-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        }
        .category-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 6px;
            border-bottom: 1px solid #edf2f7;
            margin-bottom: 2px;
        }
        .category-card-header h4 {
            font-size: 0.8rem;
            font-weight: 700;
            color: #0f172a;
            letter-spacing: 0.2px;
        }
        .category-fields-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .field-entry-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 8px;
            background: #f8fafc;
            border: 1px solid #f1f5f9;
            border-radius: 6px;
            transition: background 0.15s;
        }
        .field-entry-row:hover {
            background: #f1f5f9;
        }
        .field-title {
            font-size: 0.72rem;
            font-weight: 600;
            color: #475569;
        }
        .field-content {
            font-size: 0.76rem;
            font-weight: 700;
            color: #0f172a;
            text-align: right;
            max-width: 60%;
            word-break: break-word;
        }
        .field-content.missing {
            color: #94a3b8;
            font-weight: 400;
            font-style: italic;
        }
        .worker-card-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: #64748b;
            margin-top: 4px;
        }
        .worker-card-date {
            font-size: 0.7rem;
            color: #94a3b8;
            font-weight: 500;
        }
        .transcript-container {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 22px;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 560px;
        }
        .transcript-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 14px;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 16px;
        }
        .transcript-header h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #0f172a;
        }
        .transcript-meta {
            font-size: 0.78rem;
            color: #64748b;
        }
        .chat-bubbles-scroll {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 10px 14px;
            background: #f8fafc;
            border-radius: 10px;
            border: 1px solid #edf2f7;
        }
        .chat-bubble {
            max-width: 78%;
            padding: 12px 16px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: relative;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
            animation: fadeIn 0.2s ease;
        }
        .chat-bubble.bubble-user {
            align-self: flex-end;
            background: #ffffff;
            border: 1px solid #a7f3d0;
            border-top-right-radius: 2px;
        }
        .chat-bubble.bubble-agent {
            align-self: flex-start;
            background: #eef2ff;
            border: 1px solid #c7d2fe;
            border-top-left-radius: 2px;
        }
        .bubble-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 4px;
        }
        .bubble-sender {
            font-size: 0.74rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .bubble-user .bubble-sender {
            color: #059669;
        }
        .bubble-agent .bubble-sender {
            color: #4f46e5;
        }
        .bubble-time {
            font-size: 0.7rem;
            color: #94a3b8;
            font-weight: 500;
        }
        .bubble-body {
            font-size: 0.88rem;
            color: #1e293b;
            line-height: 1.45;
            white-space: pre-wrap;
            word-break: break-word;
        }
        .bubble-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 4px;
            margin-bottom: 4px;
            align-self: flex-start;
        }
        .tag-audio { background: #dcfce7; color: #166534; }
        .tag-image { background: #fef3c7; color: #92400e; }
        .tag-signature { background: #f3e8ff; color: #6b21a8; }
        .tag-document { background: #dbeafe; color: #1e40af; }
        .tag-interactive { background: #e0e7ff; color: #3730a3; }
        .docs-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .document-item-box {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 14px;
        }
        .document-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .document-item-header h4 {
            font-size: 0.84rem;
            font-weight: 700;
            color: #0f172a;
        }
        .badge-status {
            font-size: 0.7rem;
            font-weight: 700;
            background: #e2e8f0;
            padding: 2px 8px;
            border-radius: 4px;
            color: #64748b;
        }
        .badge-status.ready {
            background: #ecfdf5;
            color: #059669;
            border: 1px solid #a7f3d0;
        }
        .image-display-frame {
            background: #ffffff;
            border: 1px dashed #cbd5e1;
            border-radius: 8px;
            min-height: 135px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 6px;
        }
        .image-display-frame img {
            max-width: 100%;
            max-height: 175px;
            border-radius: 6px;
            object-fit: contain;
            display: block;
        }
        .empty-doc-placeholder {
            font-size: 0.78rem;
            color: #64748b;
        }
        .empty-list-state {
            text-align: center;
            padding: 24px 12px;
            font-size: 0.8rem;
            color: #64748b;
        }
        .hidden {
            display: none !important;
        }
        @keyframes livePulse {
            0% { transform: scale(0.95); opacity: 0.7; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.7; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(4px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 960px) {
            .dashboard-body {
                grid-template-columns: 1fr;
            }
            .details-layout-grid {
                grid-template-columns: 1fr;
            }
        }