/* ===================================================================
   OPTIMIZACIÓN MÓVIL PARA GESTIÓN DE PRODUCCIÓN
   Diseñado específicamente para dispositivos Android y uso táctil
   =================================================================== */

/* ========================================
   1. OPTIMIZACIONES GENERALES PARA MÓVIL
   ======================================== */

/* Mejorar el viewport y prevenir zoom indeseado */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Suavizar scroll en dispositivos móviles */
body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

/* Optimizar el contenedor principal en móvil */
@media (max-width: 768px) {
    #production-view {
        padding: 0.5rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Solo aplicar box-sizing, NO max-width a todo */
    #production-view *,
    #production-view *::before,
    #production-view *::after {
        box-sizing: border-box;
    }

    /* Título más compacto en móvil */
    #production-view .page-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        word-wrap: break-word;
    }

    /* Prevenir overflow horizontal global */
    #production-view .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #production-view .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        overflow-x: hidden;
    }
}

/* ========================================
   2. LISTAS Y TARJETAS DE CLICKUP
   ======================================== */

/* Optimizar grid de listas para móvil */
@media (max-width: 768px) {
    #clickup-lists-container .col-md-6,
    #clickup-lists-container .col-lg-4 {
        padding: 0.5rem !important;
    }

    #clickup-lists-container .clickup-list-card {
        margin-bottom: 1rem;
        min-height: auto;
    }

    #clickup-lists-container .clickup-list-card .card-body {
        padding: 1rem;
    }

    #clickup-lists-container .clickup-list-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    #clickup-lists-container .clickup-list-card .card-text {
        font-size: 0.85rem;
    }
}

/* ========================================
   3. SECCIONES DE TAREAS (KANBAN BOARD)
   ======================================== */

@media (max-width: 768px) {
    /* Headers de estado más compactos pero touch-friendly */
    .board-status-header {
        padding: 12px !important;
        font-size: 0.95rem;
        min-height: 48px; /* Mínimo para touch */
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .board-status-header h5 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .board-status-header .badge {
        font-size: 0.8rem;
        padding: 0.35em 0.65em;
    }

    /* Iconos del chevron más visibles */
    .board-status-header i.bi-chevron-down,
    .board-status-header i.bi-chevron-up {
        font-size: 1.2rem;
    }

    /* Secciones colapsables */
    .clickup-board-section {
        margin-bottom: 1rem !important;
    }
}

/* ========================================
   4. TARJETAS DE TAREAS INDIVIDUALES
   ======================================== */

@media (max-width: 768px) {
    /* Contenedor de tareas */
    .board-tasks-container {
        padding: 0.5rem !important;
    }

    /* Tarjetas de tareas optimizadas para touch */
    .task-card-compact {
        margin-bottom: 0.75rem !important;
        padding: 1rem !important;
        border-radius: 10px;
        cursor: pointer;
        /* Área mínima de touch: 44x44px según guidelines de Material Design */
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    /* NUEVA ESTRUCTURA APILADA - Orden visual mejorado */

    /* 1. Número de orden - Primero y destacado */
    .task-card-compact .task-custom-id,
    .task-card-compact .badge.bg-info {
        order: -3;
        font-size: 1rem !important;
        font-weight: 700 !important;
        padding: 0.4rem 0.8rem !important;
        border-radius: 6px;
        display: inline-block;
        width: fit-content;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    /* 2. Nombre/Descripción de la tarea - Segundo */
    .task-card-compact .task-name,
    .task-card-compact h6 {
        order: -2;
        font-size: 1rem !important;
        font-weight: 600 !important;
        line-height: 1.5 !important;
        margin-bottom: 0.5rem !important;
        color: var(--text-primary);
    }

    /* 3. Estado - Tercero y destacado */
    .task-card-compact .status-change-button,
    .task-card-compact .btn-group,
    .task-card-compact [class*="status"] {
        order: -1;
        margin-bottom: 0.75rem;
    }

    /* Asegurar que el botón de estado sea prominente */
    .task-card-compact .status-change-button {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        padding: 0.6rem 1rem !important;
        border-radius: 8px;
        text-align: center;
        width: 100%;
        margin-top: 0;
    }

    /* 4. Resto de información - Después */
    .task-card-compact .task-info-grid,
    .task-card-compact .task-assignees,
    .task-card-compact .task-tags,
    .task-card-compact .priority-badge {
        order: 0;
    }

    /* Encabezado de tarea - Ocultar o minimizar elementos redundantes */
    .task-card-compact .task-header {
        display: contents; /* Rompe el contenedor para que los hijos se apilen según order */
    }

    /* Información de la tarea */
    .task-info-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .task-info-item {
        font-size: 0.9rem;
        padding: 0.35rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-secondary);
    }

    .task-info-item i {
        font-size: 1.1rem;
        min-width: 24px;
        color: var(--primary-color);
    }

    .task-info-item strong {
        color: var(--text-primary);
        font-weight: 600;
    }

    /* Asignados */
    .task-card-compact .task-assignees {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 0.5rem;
    }

    .task-card-compact .assignee-badge,
    .task-card-compact .badge.bg-secondary {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.6rem !important;
        border-radius: 5px;
        white-space: nowrap;
        font-weight: 500;
    }

    /* Tags */
    .task-card-compact .task-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 0.5rem;
    }

    .task-card-compact .task-tag,
    .task-card-compact .badge.bg-dark {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
        border-radius: 4px;
        font-weight: 500;
    }

    /* Prioridad */
    .task-card-compact .priority-badge {
        margin-top: 0.5rem;
        font-size: 0.85rem !important;
        padding: 0.35rem 0.7rem !important;
        display: inline-block;
        width: fit-content;
    }

    /* Separador visual entre secciones */
    .task-card-compact .task-info-grid::before {
        content: '';
        display: block;
        height: 1px;
        background: var(--border-color);
        margin: 0.5rem 0;
        opacity: 0.5;
    }
}

/* ========================================
   5. DROPDOWN DE ESTADOS (Touch-Friendly)
   ======================================== */

@media (max-width: 768px) {
    /* Botón de cambio de estado */
    .status-change-button {
        min-height: 44px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        border-radius: 6px;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdown de estados */
    .status-dropdown-menu {
        width: 100% !important;
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .status-option {
        padding: 12px 16px !important;
        min-height: 48px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: background 0.2s;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .status-option:active {
        transform: scale(0.98);
    }

    /* Indicador de estado actual */
    .status-option.active {
        font-weight: 600;
        position: relative;
    }

    .status-option.active::after {
        content: "✓";
        margin-left: auto;
        font-size: 1.2rem;
    }
}

/* ========================================
   6. MODAL DE DETALLES DE TAREA
   ======================================== */

@media (max-width: 768px) {
    /* Modal ocupando casi toda la pantalla */
    #taskDetailModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
        min-height: calc(100vh - 1rem);
    }

    #taskDetailModal .modal-content {
        min-height: calc(100vh - 1rem);
        border-radius: 12px;
    }

    #taskDetailModal .modal-header {
        padding: 1rem;
        position: sticky;
        top: 0;
        z-index: 1;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
    }

    #taskDetailModal .modal-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    #taskDetailModal .modal-body {
        padding: 1rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #taskDetailModal .modal-footer {
        padding: 1rem;
        position: sticky;
        bottom: 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
    }

    /* Secciones dentro del modal */
    .task-detail-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .task-detail-section:last-child {
        border-bottom: none;
    }

    .task-detail-section h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    /* Custom fields en detalle */
    .custom-field-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
        background: var(--card-bg);
    }

    .custom-field-label {
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--text-secondary);
    }

    .custom-field-value {
        font-size: 0.95rem;
        color: var(--text-primary);
    }
}

/* ========================================
   7. BOTONES Y CONTROLES TOUCH-FRIENDLY
   ======================================== */

@media (max-width: 768px) {
    /* Todos los botones tienen tamaño mínimo touch */
    #production-view .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
        font-weight: 500;
        /* Eliminar highlight al tocar */
        -webkit-tap-highlight-color: transparent;
        /* Feedback táctil */
        transition: transform 0.1s, box-shadow 0.2s;
    }

    #production-view .btn:active {
        transform: scale(0.97);
    }

    /* Botón de volver a listas */
    #back-to-lists-btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Botones de acción en tarjetas */
    .task-card-compact .btn-sm {
        min-height: 40px;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    /* Grupos de botones */
    .btn-group-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-group-mobile .btn {
        width: 100%;
    }
}

/* ========================================
   8. ESTADOS DE CARGA Y SPINNERS
   ======================================== */

@media (max-width: 768px) {
    .spinner-border {
        width: 2rem;
        height: 2rem;
    }

    .loading-message {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* ========================================
   9. SWIPE GESTURES Y ANIMACIONES
   ======================================== */

@media (max-width: 768px) {
    /* Animación suave al colapsar/expandir */
    .collapse {
        transition: height 0.3s ease-out;
    }

    /* Feedback visual al tocar tarjetas */
    .task-card-compact:active,
    .clickup-list-card:active {
        opacity: 0.8;
        transform: scale(0.99);
    }

    /* Transiciones suaves */
    .task-card-compact,
    .clickup-list-card,
    .status-option,
    .btn {
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* ========================================
   10. OPTIMIZACIÓN DE RENDIMIENTO
   ======================================== */

@media (max-width: 768px) {
    /* Usar transform en lugar de posición para mejor rendimiento */
    .will-change-transform {
        will-change: transform;
    }

    /* Reducir blur en móvil para mejor rendimiento */
    .glass-card,
    .modal-content {
        backdrop-filter: blur(10px);
    }

    /* Optimizar sombras */
    .task-card-compact,
    .clickup-list-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
}

/* ========================================
   11. SCROLL Y OVERFLOW
   ======================================== */

@media (max-width: 768px) {
    /* Scroll containers */
    .scrollable-content {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    /* Ocultar scrollbar pero mantener funcionalidad */
    .scrollable-content::-webkit-scrollbar {
        width: 4px;
    }

    .scrollable-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .scrollable-content::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 2px;
    }
}

/* ========================================
   12. PRIORIDADES Y BADGES
   ======================================== */

@media (max-width: 768px) {
    .priority-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.35em 0.65em;
    }
}

/* ========================================
   13. MODO LANDSCAPE EN MÓVIL
   ======================================== */

@media (max-width: 768px) and (orientation: landscape) {
    #production-view .page-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .glass-card {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    #taskDetailModal .modal-dialog {
        max-height: 95vh;
    }

    .board-status-header {
        padding: 8px !important;
        min-height: 40px;
    }
}

/* ========================================
   14. ACCESIBILIDAD TÁCTIL
   ======================================== */

/* Aumentar áreas de toque para enlaces y botones pequeños */
@media (max-width: 768px) {
    a, button {
        position: relative;
    }

    /* Pseudo-elemento para aumentar área táctil sin cambiar diseño visual */
    a::before,
    button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 44px;
        min-height: 44px;
    }
}

/* ========================================
   15. SAFE AREAS PARA NOTCH/CUTOUTS
   ======================================== */

@media (max-width: 768px) {
    #production-view {
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    }

    .modal-content {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ========================================
   16. MEJORAS DE CONTRASTE PARA MÓVIL
   ======================================== */

@media (max-width: 768px) {
    /* Asegurar contraste legible */
    .task-name,
    .board-status-header h5,
    .custom-field-value {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Bordes más visibles */
    .task-card-compact,
    .clickup-list-card {
        border-width: 1.5px;
    }
}

/* ========================================
   17. TOAST/NOTIFICACIONES EN MÓVIL
   ======================================== */

@media (max-width: 768px) {
    .toast-container {
        position: fixed;
        bottom: env(safe-area-inset-bottom, 1rem);
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        width: calc(100% - 2rem);
        max-width: 400px;
    }

    .toast {
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
}

/* ========================================
   18. PULL-TO-REFRESH COMPATIBILITY
   ======================================== */

@media (max-width: 768px) {
    /* Prevenir pull-to-refresh accidental */
    #production-view {
        overscroll-behavior-y: contain;
    }

    .glass-card:first-child {
        margin-top: 0.5rem;
    }
}

/* ========================================
   19. ESTADOS VACÍOS Y MENSAJES
   ======================================== */

@media (max-width: 768px) {
    .empty-state {
        padding: 2rem 1rem;
        text-align: center;
    }

    .empty-state i {
        font-size: 3rem;
        margin-bottom: 1rem;
        opacity: 0.5;
    }

    .empty-state h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .empty-state p {
        font-size: 0.9rem;
        opacity: 0.7;
    }
}

/* ===================================================================
   20. REPORTE DE MATERIALES MÓVIL (REFACTORIZADO)
   =================================================================== */

@media (max-width: 768px) {

    /* --- Contenedor Principal del Formulario --- */
    .materials-report-form {
        padding: 0 !important;
        margin-top: 1rem !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .materials-report-form > .card {
        border-radius: 12px;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .materials-report-form .card-header {
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        background-color: transparent;
        border-bottom: 1px solid var(--border-color);
    }

    .materials-report-form .card-body {
        padding: 1rem 0.5rem;
    }

    /* --- Títulos de Sección --- */
    .materials-report-form h6 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary);
    }

    .materials-report-form h6 i {
        font-size: 1.1rem;
        color: var(--primary-color);
    }

    /* --- Toggle para Mostrar Valores --- */
    .materials-report-form .form-check-label {
        font-size: 0.9rem;
    }

    /* --- Lista de Materiales (Conversión de Tabla a Tarjetas) --- */
    .materials-list .table-responsive {
        border: none;
    }

    .materials-list table {
        border-collapse: separate;
        border-spacing: 0 1rem; /* Espacio vertical entre tarjetas */
    }

    .materials-list thead {
        display: none; /* Ocultar encabezados de tabla en móvil */
    }

    .materials-list tbody,
    .materials-list tr {
        display: block;
        width: 100%;
    }

    .materials-list tr {
        background: var(--glass-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: var(--shadow-light);
        margin-bottom: 1rem; /* Redundante por border-spacing, pero seguro */
    }

    .materials-list td {
        display: flex;
        flex-direction: column;
        padding: 0;
        border: none;
        margin-bottom: 1rem; /* Espacio entre campos dentro de la tarjeta */
        width: 100% !important;
    }

    .materials-list td:last-child {
        margin-bottom: 0;
    }

    /* --- Contenido de las Tarjetas de Material --- */

    /* Forzar que todo sea horizontal y legible */
    .materials-list, .materials-list * {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
        word-break: break-word;
        white-space: normal;
    }

    /* Header de la tarjeta (Nombre y botón Eliminar) */
    .materials-list .material-name-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .materials-list .material-name {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: var(--primary-light);
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
        padding: 0.5rem;
    }

    .materials-list .btn-outline-danger {
        min-height: 44px;
        width: 100%;
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    /* Labels de los campos */
    .materials-list .form-label {
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--text-secondary);
        text-transform: uppercase;
    }

    /* Inputs y Selectores */
    .materials-list .form-control,
    .materials-list .form-select {
        min-height: 48px;
        font-size: 1rem;
        width: 100%;
    }

    /* Grupo de botones (QTY/CM) */
    .materials-list .btn-group {
        display: flex;
        width: 100%;
    }

    .materials-list .btn-group .btn {
        flex: 1;
        min-height: 48px;
        font-size: 0.9rem;
    }

    /* Contenedor de campos de cantidad/dimensiones */
    .materials-list [id*="quantity-fields"] .row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0;
    }

    .materials-list [id*="quantity-fields"] [class*="col-"] {
        width: 100% !important;
        padding: 0;
    }

    /* --- Sección de Agregar Materiales --- */

    /* Tabs (Catálogo / Item Extra) */
    .nav-tabs {
        display: flex;
        border-bottom: 2px solid var(--border-color);
    }
    .nav-tabs .nav-item {
        flex: 1;
    }
    .nav-tabs .nav-link {
        text-align: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        min-height: 48px;
    }

    /* Paneles de los tabs */
    .tab-pane {
        padding: 1.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .tab-pane .row, .tab-pane .col, .tab-pane [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .tab-pane .form-label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .tab-pane .form-control,
    .tab-pane .form-select,
    .tab-pane .input-group .btn {
        min-height: 48px;
        font-size: 1rem;
    }

    .tab-pane .btn-success {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
    }

    /* Resultados de búsqueda */
    #search-results, [id*="search-results-"] {
        max-height: 40vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .search-result-item {
        padding: 1rem;
        border-radius: 8px;
        min-height: 48px;
    }

    /* --- Total y Botones de Acción --- */
    .materials-report-form .total-section .card {
        padding: 1rem;
        border-radius: 10px;
        font-size: 1.2rem;
        font-weight: 700;
        text-align: center;
    }

    .materials-report-form .form-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .materials-report-form .form-actions .btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
        font-weight: 600;
    }

    /* --- Ocultar columnas de valores --- */
    .values-column {
        display: none;
    }
    .materials-report-form[data-show-values="true"] .values-column {
        display: flex; /* O block, según el elemento */
    }

    /* --- FIX URGENTE PARA TEXTO VERTICAL --- */
    /* Este selector es ultra-específico para forzar la dirección del texto. */
    .materials-report-form .materials-list * {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        direction: ltr !important;
    }

    .materials-report-form .material-name {
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* ========================================
   21. HISTORIAL DE LOGS MÓVIL (Ajustado)
   ======================================== */

@media (max-width: 768px) {
    .production-logs {
        margin-top: 1.5rem;
    }
    .production-logs .card {
        border-radius: 10px;
        background: var(--glass-bg);
    }
    .production-logs .card-body {
        padding: 0.75rem;
    }
    #logs-list {
        max-height: 250px !important;
    }
    #logs-list > div {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}
