/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-b459a2w6nk] {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background-color: #cfd8dc;
    padding: 2rem;
    gap: 2rem;
    overflow-x: hidden;
}

.sidebar[b-b459a2w6nk] {
    width: 32vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: fit-content;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

main[b-b459a2w6nk] {
    flex: 1;
    display: flex; /* Agregado */
    flex-direction: column; /* Agregado */
}

.content-2[b-b459a2w6nk] {
    flex: 1; /* Agregado */
    display: flex; /* Agregado */
    flex-direction: column; /* Agregado */
}

article[b-b459a2w6nk] {
    flex: 1; /* Agregado */
    display: flex; /* Agregado */
    flex-direction: column; /* Agregado */
}

@media (max-width: 768px) {
    .page[b-b459a2w6nk] {
        flex-direction: column;
        padding: 1rem;
    }

    .sidebar[b-b459a2w6nk] {
        width: 100%;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */


.powered-logo-container[b-zsao0f252h] {
    text-align: center;
}

.powered-logo[b-zsao0f252h] {
    padding: 20px 0;
    width: 17vh;
}

@media (max-width: 768px) {
    .nav-menu[b-zsao0f252h] {
        min-height: auto;
    }
}
.active-sidebar[b-zsao0f252h] {
    background-color: white !important;
    color: #5f43c7 !important;
}

    .active-sidebar img[b-zsao0f252h] {
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(252deg) brightness(87%) contrast(92%);
    }

    .active-sidebar i[b-zsao0f252h] {
        color: #5f43c7 !important;
    }

    .active-sidebar span[b-zsao0f252h] {
        color: #5f43c7 !important;
    }

.nav-link:not(.active-sidebar):hover[b-zsao0f252h] {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.ms-4 .active-sidebar[b-zsao0f252h] {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #5f43c7 !important;
}
.transition-all[b-zsao0f252h] {
    transition: all 0.3s ease-in-out;
}

/* Versi�n m�s espec�fica */
nav .nav-link.active-sidebar[b-zsao0f252h] {
    background-color: white !important;
    color: #5f43c7 !important;
}

    nav .nav-link.active-sidebar img[b-zsao0f252h] {
        filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(252deg) brightness(87%) contrast(92%) !important;
    }

    nav .nav-link.active-sidebar i[b-zsao0f252h],
    nav .nav-link.active-sidebar span[b-zsao0f252h] {
        color: #5f43c7 !important;
    }

nav .nav-link:not(.active-sidebar):hover[b-zsao0f252h] {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

nav .ms-4 .nav-link.active-sidebar[b-zsao0f252h] {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #5f43c7 !important;
}
    
/* /Pages/Asignación/CrearAsignacion.razor.rz.scp.css */
/* ============================================
   SELECTOR PERSONALIZADO CON BÚSQUEDA
   ============================================ */

.custom-select-wrapper[b-6fhy6ql34u] {
    position: relative;
    width: 100%;
}

.custom-select-trigger[b-6fhy6ql34u] {
    width: 100%;
    padding: 8px 40px 8px 12px;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    text-align: left;
}

    .custom-select-trigger:hover:not(.disabled)[b-6fhy6ql34u] {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
    }

    .custom-select-trigger:focus[b-6fhy6ql34u] {
        outline: none;
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .custom-select-trigger.disabled[b-6fhy6ql34u] {
        background-color: #e9ecef;
        cursor: not-allowed;
        opacity: 0.6;
    }

.select-text[b-6fhy6ql34u] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #495057;
}

.custom-select-trigger.disabled .select-text[b-6fhy6ql34u] {
    color: #6c757d;
}

.select-icon[b-6fhy6ql34u] {
    font-size: 0.875rem;
    color: #6c757d;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

/* Dropdown panel */
.custom-select-dropdown[b-6fhy6ql34u] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
    animation: selectSlideIn-b-6fhy6ql34u 0.2s ease-out;
}

@keyframes selectSlideIn-b-6fhy6ql34u {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Caja de búsqueda */
.select-search-box[b-6fhy6ql34u] {
    position: relative;
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.search-icon-select[b-6fhy6ql34u] {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 0.875rem;
}

.select-search-input[b-6fhy6ql34u] {
    width: 100%;
    padding: 8px 12px 8px 32px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

    .select-search-input:focus[b-6fhy6ql34u] {
        outline: none;
        border-color: #5f43c7;
    }

/* Lista de opciones */
.select-options-list[b-6fhy6ql34u] {
    max-height: 300px;
    overflow-y: auto;
    padding: 4px;
}

    .select-options-list[b-6fhy6ql34u]::-webkit-scrollbar {
        width: 6px;
    }

    .select-options-list[b-6fhy6ql34u]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .select-options-list[b-6fhy6ql34u]::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

        .select-options-list[b-6fhy6ql34u]::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

/* Opción individual */
.select-option[b-6fhy6ql34u] {
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .select-option:hover[b-6fhy6ql34u] {
        background: #f8f9fa;
    }

    .select-option.selected[b-6fhy6ql34u] {
        background: #e7f1ff;
    }

.option-content[b-6fhy6ql34u] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-name[b-6fhy6ql34u] {
    font-size: 0.9rem;
    color: #212529;
    font-weight: 500;
}

.option-id[b-6fhy6ql34u] {
    font-size: 0.75rem;
    color: #6c757d;
}

.option-check-icon[b-6fhy6ql34u] {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Sin resultados */
.select-no-results[b-6fhy6ql34u] {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

    .select-no-results i[b-6fhy6ql34u] {
        font-size: 2rem;
        display: block;
        margin-bottom: 8px;
        opacity: 0.5;
    }

    .select-no-results span[b-6fhy6ql34u] {
        font-size: 0.875rem;
    }

/* Backdrop */
.select-backdrop[b-6fhy6ql34u] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: transparent;
}



/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .custom-select-dropdown[b-6fhy6ql34u] {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        width: 90%;
        max-width: 500px;
    }

    @keyframes selectSlideIn-b-6fhy6ql34u {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    .mb-3.d-flex[b-6fhy6ql34u] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .form-label[b-6fhy6ql34u] {
        width: 100% !important;
        margin-bottom: 8px;
    }
}
/* /Pages/DocumentosStatus/DocumentosStatus.razor.rz.scp.css */
/* MODAL STYLES */
.modal-backdrop[b-yy7ptqjju1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-dialog[b-yy7ptqjju1] {
    max-width: 500px;
    width: 90%;
}

.modal-content[b-yy7ptqjju1] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalFadeIn-b-yy7ptqjju1 0.3s ease-out;
}

.modal-header[b-yy7ptqjju1] {
    background: #5F43C7;
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.modal-body[b-yy7ptqjju1] {
    padding: 2rem;
}

.modal-footer[b-yy7ptqjju1] {
    padding: 1rem 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

@keyframes modalFadeIn-b-yy7ptqjju1 {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* LAYOUT CONTAINERS */
.container-fluid[b-yy7ptqjju1] {
    max-width: 100%;
    overflow: hidden;
}

.card[b-yy7ptqjju1] {
    max-width: 100%;
    overflow: hidden;
}

.table-container[b-yy7ptqjju1] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.table-scroll[b-yy7ptqjju1] {
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
}

/* TABLE BASE STYLES */
.table[b-yy7ptqjju1] {
    margin: 0;
    width: auto;
    min-width: 100%;
   
}

.table-compact[b-yy7ptqjju1] {
    font-size: 0.7rem;
    white-space: nowrap;
    width: auto;
    table-layout: auto;
}

    .table-compact th[b-yy7ptqjju1] {
        font-size: 0.6rem;
        font-weight: 700;
        padding: 4px 2px;
        text-align: center;
        vertical-align: bottom;
    }

    .table-compact td[b-yy7ptqjju1] {
        font-size: 0.7rem;
        padding: 6px 3px;
        text-align: center;
        border-bottom: 1px solid #dee2e6;
        height: 35px;
        vertical-align: middle;
    }

/* STICKY COLUMNS */
.sticky-col[b-yy7ptqjju1] {
    position: sticky;
    left: 0;
    z-index: 10;
    border-right: 2px solid #dee2e6;
    width: 80px;
}

.sticky-col-2[b-yy7ptqjju1] {
    position: sticky;
    left: 80px;
    z-index: 10;
    border-right: 2px solid #dee2e6;
    width: 100px;
}

.table-compact .sticky-col[b-yy7ptqjju1],
.table-compact .sticky-col-2[b-yy7ptqjju1] {
    font-size: 0.7rem;
    padding: 6px 3px;
}

/* COLUMNAS ADICIONALES */
.table-compact .header-adicionales[b-yy7ptqjju1] {
    font-size: 0.7rem;
    padding: 4px 2px;
}

.table-compact td.header-adicionales[b-yy7ptqjju1] {
    width: 120px;
}

/* HEADER STYLES CON TEXTO VERTICAL */
.header-obligatorios[b-yy7ptqjju1] {
    background: #ff6266 !important;
    color: white !important;
    min-width: 60px;
    width: 60px;
    font-size: 0.6rem;
    line-height: 1.1;
    padding: 4px 2px;
    text-align: center;
    vertical-align: bottom;
    position: relative;
}

    .header-obligatorios .vertical-text[b-yy7ptqjju1] {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        white-space: nowrap;
        display: inline-block;
        height: 70px;
        width: 100%;
        line-height: 1.1;
    }

.header-adicionales[b-yy7ptqjju1] {
    background: #f4f4f4 !important;
    color: #000000 !important;
    width: 120px;
}

/* STATUS ICONS MAS PEQUEÑOS */
.status-check[b-yy7ptqjju1] {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 10px;
}

.status-cross[b-yy7ptqjju1] {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 5px;
}

/* BACKGROUND COLORS */
.bg-success-light[b-yy7ptqjju1] {
    background-color: #d4edda !important;
}

.bg-danger-light[b-yy7ptqjju1] {
    background-color: #f8d7da !important;
}

/* SCROLLBAR */
.table-scroll[b-yy7ptqjju1]::-webkit-scrollbar {
    height: 8px;
}

.table-scroll[b-yy7ptqjju1]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-scroll[b-yy7ptqjju1]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .table-scroll[b-yy7ptqjju1]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
/* MODAL DE DETALLES */
.modal-dialog-large[b-yy7ptqjju1] {
    max-width: 800px;
    width: 95%;
    margin: 2rem auto;
}

.btn-close[b-yy7ptqjju1] {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-close:hover[b-yy7ptqjju1] {
        opacity: 0.7;
    }

.modal-body-large[b-yy7ptqjju1] {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.section-header[b-yy7ptqjju1] {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px 6px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.obligatorios-header[b-yy7ptqjju1] {
    background: #dc3545;
    color: white;
}

.opcionales-header[b-yy7ptqjju1] {
    background: #6c757d;
    color: white;
}

.badge-count[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.table-detalle-container[b-yy7ptqjju1] {
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.table-detalle[b-yy7ptqjju1] {
    width: 100%;
    margin: 0;
    background: white;
}

    .table-detalle thead[b-yy7ptqjju1] {
        background: #f8f9fa;
    }

    .table-detalle th[b-yy7ptqjju1] {
        padding: 12px 16px;
        font-size: 0.90rem;
        font-weight: 700;
        text-align: center;
    }

        .table-detalle th:first-child[b-yy7ptqjju1] {
            text-align: left;
            width: 50%;
        }

        .table-detalle th:nth-child(2)[b-yy7ptqjju1] {
            width: 20%;
        }

        .table-detalle th:nth-child(3)[b-yy7ptqjju1] {
            width: 30%;
        }

    .table-detalle td[b-yy7ptqjju1] {
        padding: 12px 16px;
        font-size: 0.85rem;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
        vertical-align: middle;
    }

        .table-detalle td.text-left[b-yy7ptqjju1] {
            text-align: left;
        }

    .table-detalle tbody tr:hover[b-yy7ptqjju1] {
        background-color: #f8f9fa;
    }

.status-check-large[b-yy7ptqjju1] {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.status-cross-large[b-yy7ptqjju1] {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.btn-accion[b-yy7ptqjju1] {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

    .btn-accion:hover[b-yy7ptqjju1] {
        background: #0056b3;
    }

    .btn-accion i[b-yy7ptqjju1] {
        font-size: 0.9rem;
    }
.badge-incompleto[b-yy7ptqjju1] {
    background-color: #ff6266;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    min-width: 40px;
}
.header-expandible[b-yy7ptqjju1] {
    position: relative;
    cursor: pointer;
}

.header-tooltip[b-yy7ptqjju1] {
    position: fixed;
    background: #333;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 999999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    pointer-events: none;
    max-width: 700px;
    text-align: center;
}

    .header-tooltip.show[b-yy7ptqjju1] {
        opacity: 1;
        visibility: visible;
    }
/* ACORDEÓN STYLES */
.accordion-section[b-yy7ptqjju1] {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.accordion-header[b-yy7ptqjju1] {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
}

    .accordion-header:hover[b-yy7ptqjju1] {
        opacity: 0.9;
    }

    .accordion-header.obligatorios[b-yy7ptqjju1] {
        background: #dc3545;
        color: white;
    }

    .accordion-header.opcionales[b-yy7ptqjju1] {
        background: #6c757d;
        color: white;
    }

.accordion-toggle[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .accordion-toggle.expanded[b-yy7ptqjju1] {
        transform: rotate(180deg);
    }

.accordion-content[b-yy7ptqjju1] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

    .accordion-content.expanded[b-yy7ptqjju1] {
        max-height: 600px;
    }

.accordion-body[b-yy7ptqjju1] {
    border-top: none;
    border-radius: 0;
}
.modal-dialog-documentos[b-yy7ptqjju1] {
    max-width: 90%;
    width: 1200px;
    margin: 1.75rem auto;
}

.modal-body-documentos[b-yy7ptqjju1] {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.table-documentos-container[b-yy7ptqjju1] {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .table-documentos-container .table[b-yy7ptqjju1] {
        margin-bottom: 0;
        border-radius: 8px;
        overflow: hidden;
    }

        .table-documentos-container .table th[b-yy7ptqjju1] {
            background-color: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 12px 8px;
        }

        .table-documentos-container .table td[b-yy7ptqjju1] {
            font-size: 0.85rem;
            padding: 10px 8px;
            vertical-align: middle;
        }

        .table-documentos-container .table tbody tr:hover[b-yy7ptqjju1] {
            background-color: #f8f9fa;
        }

.btn-close[b-yy7ptqjju1] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
}

    .btn-close:hover[b-yy7ptqjju1] {
        color: #000;
    }

.modal-title[b-yy7ptqjju1] {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
}

.cursor-pointer[b-yy7ptqjju1] {
    cursor: pointer;
}
.modal-fullscreen[b-yy7ptqjju1] {
    width: 100vw;
    max-width: none;
    height: 100vh;
    margin: 0;
}

    .modal-fullscreen .modal-content[b-yy7ptqjju1] {
        height: 100vh;
        border: none;
        border-radius: 0;
    }

.modal.show[b-yy7ptqjju1] {
    animation: fadeIn-b-yy7ptqjju1 0.3s ease-out;
}

@keyframes fadeIn-b-yy7ptqjju1 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-header .btn[b-yy7ptqjju1] {
    padding: 0.375rem 0.75rem;
}

    .modal-header .btn:hover[b-yy7ptqjju1] {
        background-color: rgba(255, 255, 255, 0.1);
    }

@media (max-width: 768px) {
    .modal-footer[b-yy7ptqjju1] {
        flex-direction: column;
        gap: 1rem;
    }

        .modal-footer .d-flex[b-yy7ptqjju1] {
            flex-direction: column;
            align-items: flex-start;
        }
}
.table-detalle-container-scroll[b-yy7ptqjju1] {
    max-height: 300px; 
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: white;
}

    /* Estilo para la tabla dentro del scroll */
    .table-detalle-container-scroll .table-detalle[b-yy7ptqjju1] {
        margin-bottom: 0;
        border-collapse: separate;
        border-spacing: 0;
    }

        .table-detalle-container-scroll .table-detalle thead th[b-yy7ptqjju1] {
            position: sticky;
            top: 0;
            background: #f8f9fa;
            z-index: 10;
            border-bottom: 2px solid #dee2e6;
            box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        }

    .table-detalle-container-scroll[b-yy7ptqjju1]::-webkit-scrollbar {
        width: 8px;
    }

    .table-detalle-container-scroll[b-yy7ptqjju1]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .table-detalle-container-scroll[b-yy7ptqjju1]::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 4px;
    }

        .table-detalle-container-scroll[b-yy7ptqjju1]::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

.btn-ver[b-yy7ptqjju1] {
    background-color: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

    .btn-ver:hover[b-yy7ptqjju1] {
        background-color: #218838 !important;
        border-color: #1e7e34 !important;
    }

.table-detalle-container-scroll .table-detalle tbody tr[b-yy7ptqjju1] {
    border-bottom: 1px solid #dee2e6;
}

    .table-detalle-container-scroll .table-detalle tbody tr:last-child[b-yy7ptqjju1] {
        border-bottom: none;
    }

.table-detalle-container-scroll[b-yy7ptqjju1]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.05));
    pointer-events: none;
}
/* ============================================
   CABECERO DE ESTADÍSTICAS - DISEÑO MODERNO
   ============================================ */

.stats-header-card[b-yy7ptqjju1] {
    background: linear-gradient(135deg, #5f43c7 0%, #7c5cdc 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(95, 67, 199, 0.3);
    position: relative;
    overflow: visible !important;
}

/* Fila principal del header */
.stats-main-row[b-yy7ptqjju1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

/* ============================================
   SECCIÓN DE TÍTULO (IZQUIERDA)
   ============================================ */

.stats-title-section[b-yy7ptqjju1] {
    flex: 0 0 auto;
}

.stats-title[b-yy7ptqjju1] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

    .stats-title i[b-yy7ptqjju1] {
        font-size: 1.4rem;
    }

.stats-subtitle[b-yy7ptqjju1] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding-left: 34px;
}

/* ============================================
   SECCIÓN DE NÚMEROS (CENTRO)
   ============================================ */

.stats-numbers-section[b-yy7ptqjju1] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.stat-box[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box-success[b-yy7ptqjju1] {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
}

.stat-box-percentage[b-yy7ptqjju1] {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
}

.stat-number[b-yy7ptqjju1] {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label-small[b-yy7ptqjju1] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SECCIÓN DE ACCIONES (DERECHA)
   ============================================ */

.stats-actions-section[b-yy7ptqjju1] {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    overflow: visible !important;
}

.filter-select[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5f43c7;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-select:hover[b-yy7ptqjju1] {
        background: white;
        border-color: white;
    }

    .filter-select:focus[b-yy7ptqjju1] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

.btn-toggle-view[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .btn-toggle-view:hover[b-yy7ptqjju1] {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-1px);
    }

    .btn-toggle-view i[b-yy7ptqjju1] {
        font-size: 1rem;
    }

/* ============================================
   BARRA DE PROGRESO
   ============================================ */

.stats-progress-bar[b-yy7ptqjju1] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill[b-yy7ptqjju1] {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #34ce57 100%);
    border-radius: 10px;
    transition: width 0.8s ease;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .stats-main-row[b-yy7ptqjju1] {
        flex-wrap: wrap;
    }

    .stats-numbers-section[b-yy7ptqjju1] {
        flex: 1 1 100%;
        order: 3;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .stats-header-card[b-yy7ptqjju1] {
        padding: 16px;
    }

    .stats-main-row[b-yy7ptqjju1] {
        flex-direction: column;
        gap: 16px;
    }

    .stats-title-section[b-yy7ptqjju1],
    .stats-actions-section[b-yy7ptqjju1],
    .stats-numbers-section[b-yy7ptqjju1] {
        width: 100%;
    }

    .stats-title[b-yy7ptqjju1] {
        font-size: 1.1rem;
    }

    .stats-subtitle[b-yy7ptqjju1] {
        padding-left: 30px;
    }

    .stats-numbers-section[b-yy7ptqjju1] {
        flex-direction: column;
        gap: 12px;
    }

    .stat-box[b-yy7ptqjju1] {
        width: 100%;
    }

    .stats-actions-section[b-yy7ptqjju1] {
        flex-direction: column;
        width: 100%;
    }

    .filter-select[b-yy7ptqjju1],
    .btn-toggle-view[b-yy7ptqjju1] {
        width: 100%;
    }

    .stat-number[b-yy7ptqjju1] {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-title[b-yy7ptqjju1] {
        font-size: 1rem;
    }

    .stat-number[b-yy7ptqjju1] {
        font-size: 1.25rem;
    }

    .stat-label-small[b-yy7ptqjju1] {
        font-size: 0.7rem;
    }
}
/* ============================================
   DROPDOWN MULTI-SELECCIÓN
   ============================================ */

.multi-select-wrapper[b-yy7ptqjju1] {
    position: relative;
}

.filter-select-multi[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5f43c7;
    min-width: 220px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

    .filter-select-multi:hover[b-yy7ptqjju1] {
        background: white;
        border-color: white;
    }

.filter-text[b-yy7ptqjju1] {
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-icon[b-yy7ptqjju1] {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.dropdown-backdrop[b-yy7ptqjju1] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
}

.dropdown-panel[b-yy7ptqjju1] {
    position: fixed !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: 24px !important; /* Fijo desde la derecha */
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999 !important;
    min-width: 320px;
    max-width: 400px;
    max-height: 80vh;
    overflow: hidden;
    animation: dropdownSlideIn-b-yy7ptqjju1 0.2s ease-out;
}

@keyframes dropdownSlideIn-b-yy7ptqjju1 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header del dropdown */
.dropdown-header[b-yy7ptqjju1] {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.search-box[b-yy7ptqjju1] {
    position: relative;
    margin-bottom: 8px;
}

.search-icon[b-yy7ptqjju1] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 0.875rem;
}

.search-input[b-yy7ptqjju1] {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

    .search-input:focus[b-yy7ptqjju1] {
        outline: none;
        border-color: #5f43c7;
    }

.dropdown-actions[b-yy7ptqjju1] {
    display: flex;
    gap: 8px;
}

.btn-action-small[b-yy7ptqjju1] {
    flex: 1;
    padding: 6px 12px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-action-small:hover[b-yy7ptqjju1] {
        background: #e9ecef;
        border-color: #adb5bd;
    }

/* Lista de opciones */
.dropdown-options[b-yy7ptqjju1] {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px;
}

    .dropdown-options[b-yy7ptqjju1]::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-options[b-yy7ptqjju1]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .dropdown-options[b-yy7ptqjju1]::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

        .dropdown-options[b-yy7ptqjju1]::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

.dropdown-option[b-yy7ptqjju1] {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 10px;
}

    .dropdown-option:hover[b-yy7ptqjju1] {
        background: #f8f9fa;
    }

    .dropdown-option input[type="checkbox"][b-yy7ptqjju1] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #5f43c7;
    }

.option-label[b-yy7ptqjju1] {
    flex: 1;
    font-size: 0.875rem;
    color: #212529;
    font-weight: 500;
}

.option-check[b-yy7ptqjju1] {
    color: #28a745;
    font-size: 1rem;
}

.no-results[b-yy7ptqjju1] {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

    .no-results i[b-yy7ptqjju1] {
        font-size: 2rem;
        display: block;
        margin-bottom: 8px;
        opacity: 0.5;
    }

    .no-results span[b-yy7ptqjju1] {
        font-size: 0.875rem;
    }

/* Footer del dropdown */
.dropdown-footer[b-yy7ptqjju1] {
    padding: 12px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selection-count[b-yy7ptqjju1] {
    font-size: 0.813rem;
    color: #6c757d;
    font-weight: 500;
}

.btn-apply[b-yy7ptqjju1] {
    padding: 6px 20px;
    background: #5f43c7;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-apply:hover[b-yy7ptqjju1] {
        background: #4e36a8;
    }

/* ============================================
   RESPONSIVE PARA DROPDOWN
   ============================================ */

@media (max-width: 768px) {
    .dropdown-panel[b-yy7ptqjju1] {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        width: 90%;
        max-width: 400px;
    }

    @keyframes dropdownSlideIn-b-yy7ptqjju1 {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    .filter-select-multi[b-yy7ptqjju1] {
        width: 100%;
    }
}
/* ============================================
   PANTALLA DE BIENVENIDA
   ============================================ */

.welcome-screen[b-yy7ptqjju1] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

.welcome-content[b-yy7ptqjju1] {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp-b-yy7ptqjju1 0.6s ease-out;
}

@keyframes fadeInUp-b-yy7ptqjju1 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-icon[b-yy7ptqjju1] {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #5f43c7 0%, #7c5cdc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(95, 67, 199, 0.3);
}

    .welcome-icon i[b-yy7ptqjju1] {
        font-size: 3.5rem;
        color: white;
    }

.welcome-title[b-yy7ptqjju1] {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.welcome-description[b-yy7ptqjju1] {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-welcome-primary[b-yy7ptqjju1] {
    background: linear-gradient(135deg, #5f43c7 0%, #7c5cdc 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95, 67, 199, 0.3);
}

    .btn-welcome-primary:hover[b-yy7ptqjju1] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(95, 67, 199, 0.4);
    }

    .btn-welcome-primary:active[b-yy7ptqjju1] {
        transform: translateY(0);
    }

/* ============================================
   BOTÓN CAMBIAR TIPO EN CABECERO
   ============================================ */

.btn-change-type[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 12px;
}

    .btn-change-type:hover[b-yy7ptqjju1] {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: rotate(180deg);
    }

    .btn-change-type i[b-yy7ptqjju1] {
        font-size: 1.2rem;
    }

/* ============================================
   BOTÓN CERRAR EN MODAL
   ============================================ */

.btn-close-modal[b-yy7ptqjju1] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-close-modal:hover[b-yy7ptqjju1] {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .btn-close-modal i[b-yy7ptqjju1] {
        font-size: 1.5rem;
    }

/* Ajustar header del modal para que tenga espacio entre elementos */
.modal-header[b-yy7ptqjju1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .welcome-icon[b-yy7ptqjju1] {
        width: 100px;
        height: 100px;
    }

        .welcome-icon i[b-yy7ptqjju1] {
            font-size: 3rem;
        }

    .welcome-title[b-yy7ptqjju1] {
        font-size: 1.6rem;
    }

    .welcome-description[b-yy7ptqjju1] {
        font-size: 1rem;
    }

    .btn-welcome-primary[b-yy7ptqjju1] {
        width: 100%;
        justify-content: center;
    }

    .btn-change-type[b-yy7ptqjju1] {
        width: 32px;
        height: 32px;
        margin-left: 8px;
    }

        .btn-change-type i[b-yy7ptqjju1] {
            font-size: 1rem;
        }
}
/* /Pages/ForgotPassword/ForgotPassword.razor.rz.scp.css */
.reset-password-container[b-64om9iclko] {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: white;
}

.form-group[b-64om9iclko] {
    margin-bottom: 1rem;
}

.form-control[b-64om9iclko] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.btn-primary[b-64om9iclko] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
}
/* /Pages/Home/Home.razor.rz.scp.css */
/* Contenedor principal del mapa */
.map-fullscreen-container[b-f9eit7tslr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 1;
    overflow: hidden;
}

/* Contenedor del mapa */
.map-container[b-f9eit7tslr] {
    height: 100%;
    width: 100%;
    position: relative;
}

/* El mapa ocupa todo el espacio */
#googleMap[b-f9eit7tslr] {
    height: 100%;
    width: 100%;
}

/* === BARRA DE HERRAMIENTAS === */
.toolbar-container[b-f9eit7tslr] {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
}

/* Botón toggle */
.toolbar-toggle[b-f9eit7tslr] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    position: relative;
}

    .toolbar-toggle:hover[b-f9eit7tslr] {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    }

/* Panel de filtros */
.toolbar-panel[b-f9eit7tslr] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 320px;
    margin-left: 16px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.toolbar-open .toolbar-panel[b-f9eit7tslr] {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Header del panel */
.toolbar-header[b-f9eit7tslr] {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

    .toolbar-header h4[b-f9eit7tslr] {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

/* Contenido del panel */
.toolbar-content[b-f9eit7tslr] {
    padding: 20px 24px 24px;
}

/* Grupos de filtros */
.filter-group[b-f9eit7tslr] {
    margin-bottom: 20px;
}

    .filter-group:last-of-type[b-f9eit7tslr] {
        margin-bottom: 0;
    }

/* Labels de filtros */
.filter-label[b-f9eit7tslr] {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

    .filter-label i[b-f9eit7tslr] {
        margin-right: 8px;
        color: #667eea;
        font-size: 16px;
    }

/* Selects */
.filter-select[b-f9eit7tslr] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    color: #374151;
    background: white;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

    .filter-select:focus[b-f9eit7tslr] {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .filter-select:hover[b-f9eit7tslr] {
        border-color: #d1d5db;
    }

/* Resultados y botón limpiar */
.filter-results[b-f9eit7tslr] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-count[b-f9eit7tslr] {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.clear-filters-btn[b-f9eit7tslr] {
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

    .clear-filters-btn:hover[b-f9eit7tslr] {
        background: #e5e7eb;
        color: #374151;
    }

    .clear-filters-btn i[b-f9eit7tslr] {
        margin-right: 4px;
        font-size: 12px;
    }

/* Responsive */
@media (min-width: 769px) {
    .map-fullscreen-container[b-f9eit7tslr] {
        left: 190px;
        transition: left 0.3s ease;
    }
}

.sidebar-collapsed .map-fullscreen-container[b-f9eit7tslr] {
    left: 60px;
}

@media (max-width: 768px) {
    .map-fullscreen-container[b-f9eit7tslr] {
        left: 0;
    }

    .toolbar-container[b-f9eit7tslr] {
        top: 15px;
        left: 15px;
    }

    .toolbar-panel[b-f9eit7tslr] {
        width: 280px;
        margin-left: 12px;
    }

    .toolbar-content[b-f9eit7tslr] {
        padding: 16px 20px 20px;
    }
}

/* Animación suave para el toggle del icono */
.toolbar-toggle i[b-f9eit7tslr] {
    transition: transform 0.3s ease;
}

.toolbar-open .toolbar-toggle i[b-f9eit7tslr] {
    transform: rotate(90deg);
}
/* Agregar estos estilos CSS para personalizar los selects */

.custom-select[b-f9eit7tslr] {
    position: relative;
    display: block;
    width: 100%;
}

    .custom-select select[b-f9eit7tslr] {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: linear-gradient(145deg, #ffffff, #f8fafc);
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px 40px 12px 16px;
        font-size: 14px;
        font-weight: 500;
        color: #374151;
        width: 100%;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

        .custom-select select:hover[b-f9eit7tslr] {
            border-color: #667eea;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
        }

        .custom-select select:focus[b-f9eit7tslr] {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(102, 126, 234, 0.15);
            background: white;
        }

    .custom-select[b-f9eit7tslr]::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #6b7280;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .custom-select:hover[b-f9eit7tslr]::after {
        border-top-color: #667eea;
    }

    .custom-select select:focus + .custom-select[b-f9eit7tslr]::after,
    .custom-select:focus-within[b-f9eit7tslr]::after {
        border-top-color: #667eea;
        transform: translateY(-50%) rotate(180deg);
    }

    /* Estilos para las opciones del select */
    .custom-select select option[b-f9eit7tslr] {
        background: white;
        color: #374151;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 500;
        border: none;
        border-radius: 8px;
        margin: 2px 0;
    }

        .custom-select select option:hover[b-f9eit7tslr] {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }

        .custom-select select option:checked[b-f9eit7tslr] {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            font-weight: 600;
        }

/* Para navegadores que soportan mejor personalización */
@supports (-webkit-appearance: none) {
    .custom-select select[b-f9eit7tslr] {
        background-image: none;
    }
}

/* Estilos específicos para el toolbar */
.toolbar-content .custom-select[b-f9eit7tslr] {
    margin-bottom: 4px;
}

    .toolbar-content .custom-select select[b-f9eit7tslr] {
        font-size: 13px;
        padding: 10px 35px 10px 14px;
        border-radius: 10px;
    }

    .toolbar-content .custom-select[b-f9eit7tslr]::after {
        right: 12px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #6b7280;
    }

/* Animación suave para el dropdown */
.custom-select select[b-f9eit7tslr] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .custom-select select:active[b-f9eit7tslr] {
        transform: scale(0.98);
    }

    /* Mejoras adicionales para accesibilidad */
    .custom-select select:disabled[b-f9eit7tslr] {
        background: #f1f5f9;
        color: #9ca3af;
        cursor: not-allowed;
        border-color: #e5e7eb;
    }

        .custom-select select:disabled[b-f9eit7tslr]::after {
            border-top-color: #9ca3af;
        }

/* Responsive */
@media (max-width: 768px) {
    .custom-select select[b-f9eit7tslr] {
        font-size: 16px; /* Evita zoom en iOS */
        padding: 14px 40px 14px 16px;
    }
}
.filter-date[b-f9eit7tslr] {
    appearance: none;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-date:hover[b-f9eit7tslr] {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }

    .filter-date:focus[b-f9eit7tslr] {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        background: white;
    }
/* /Pages/Imagenes/Imagenes.razor.rz.scp.css */
.content-section[b-ibyfei9bs5] {
    padding: 1rem;
}

.image-section[b-ibyfei9bs5] {
    padding: 1rem;
}

.header[b-ibyfei9bs5] {
    margin-bottom: 1rem;
}

.tramos-list table[b-ibyfei9bs5] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.tramos-list th[b-ibyfei9bs5],
.tramos-list td[b-ibyfei9bs5] {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

.new-tramo div[b-ibyfei9bs5] {
    margin-bottom: 1rem;
}

.new-tramo label[b-ibyfei9bs5] {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.progress[b-ibyfei9bs5] {
    height: 1rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar[b-ibyfei9bs5] {
    height: 100%;
    background-color: #007bff;
    text-align: center;
    color: white;
    white-space: nowrap;
    transition: width 0.4s ease;
}

/* Puedes poner esto en site.css o similar */
.image-scan-loader[b-ibyfei9bs5] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    border-radius: 8px;
    overflow: hidden;
}

.image-scan-loader[b-ibyfei9bs5]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.image-scan-loader[b-ibyfei9bs5]::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 8%;
    background: linear-gradient(180deg, rgba(0, 123, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(0, 123, 255, 0.7) 100%);
    animation: scan-line-move-b-ibyfei9bs5 1.2s linear infinite;
    box-shadow: 0 0 24px 8px rgba(0, 123, 255, 0.3);
    opacity: 0.85;
}

@keyframes scan-line-move-b-ibyfei9bs5 {
    0% {
        top: 0%;
    }

    100% {
        top: 92%;
    }
}



.dropdown-submenu[b-ibyfei9bs5] {
    position: relative;
}

.dropdown-submenu>.dropdown-menu[b-ibyfei9bs5] {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -0.25rem;
    margin-left: -0.25rem;
    z-index: 1051;
    min-width: 180px;
}

.dropdown-submenu:hover>.dropdown-menu[b-ibyfei9bs5] {
    display: block;
}

.dropdown-submenu>a[b-ibyfei9bs5]::after {
    content: "";
    float: right;
    margin-top: 0.3rem;
    margin-right: -0.5rem;
    border-left: 0.35em solid;
    border-top: 0.35em solid transparent;
    border-bottom: 0.35em solid transparent;
}

.dropdown-menu[b-ibyfei9bs5] {
    min-width: 11rem;
}

.dropdown-menu>li>a[b-ibyfei9bs5] {
    white-space: nowrap;
    padding-right: 2rem;
}

.dropdown-menu>li>.dropdown-menu[b-ibyfei9bs5] {
    top: 0;
    left: 100%;
}
.container-card[b-ibyfei9bs5] {
    border-radius: 16px;
    background: #5F43C7;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    min-height: 90px;
    margin-bottom: 30px;
}
.nav-link.deactive[b-ibyfei9bs5] {
    color: #6c757d !important;
    background-color: transparent !important;
}

    .nav-link.deactive:hover[b-ibyfei9bs5] {
        color: #495057 !important;
    }

@media (max-width: 768px) {
    .modal-dialog[b-ibyfei9bs5] {
        margin: 10px !important;
        max-width: calc(100vw - 20px) !important;
        max-height: calc(100vh - 20px) !important;
    }

    .modal-content[b-ibyfei9bs5] {
        height: calc(100vh - 20px) !important;
    }
}
.flex-1[b-ibyfei9bs5] {
    flex: 1;
}

.h-100[b-ibyfei9bs5] {
    height: 100%;
}

#imageEditor[b-ibyfei9bs5] {
    display: block;
}

.bg-light.p-3.rounded[b-ibyfei9bs5] {
    height: calc(100vh - 200px);
    min-height: 500px;
}

.position-relative .btn-warning[b-ibyfei9bs5] {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 193, 7, 0.9);
    border: 1px solid rgba(255, 193, 7, 1);
}

    .position-relative .btn-warning:hover[b-ibyfei9bs5] {
        background-color: rgba(255, 193, 7, 1);
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
#magnifier[b-ibyfei9bs5] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
}

#magnifierCanvas[b-ibyfei9bs5] {
    border-radius: 50%;
}

/* Mejorar la calidad del canvas principal */
canvas[b-ibyfei9bs5] {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
.position-absolute .btn[b-ibyfei9bs5] {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.position-absolute .btn-warning[b-ibyfei9bs5] {
    background-color: rgba(255, 193, 7, 0.9);
}

.position-absolute .btn-info[b-ibyfei9bs5] {
    background-color: rgba(13, 202, 240, 0.9);
}

.position-absolute .btn-success[b-ibyfei9bs5] {
    background-color: rgba(25, 135, 84, 0.9);
}

.position-absolute .btn:hover[b-ibyfei9bs5] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.position-absolute .btn-warning:hover[b-ibyfei9bs5] {
    background-color: rgba(255, 193, 7, 1);
}

.position-absolute .btn-info:hover[b-ibyfei9bs5] {
    background-color: rgba(13, 202, 240, 1);
}

.position-absolute .btn-success:hover[b-ibyfei9bs5] {
    background-color: rgba(25, 135, 84, 1);
}
.custom-select-container[b-ibyfei9bs5] {
    background-color: #5f43c7;
    border-radius: 8px;
    padding: 3px;
    color: white;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(95, 67, 199, 0.3);
    transition: box-shadow 0.2s ease;
}

    .custom-select-container:hover[b-ibyfei9bs5] {
        box-shadow: 0 4px 20px rgba(95, 67, 199, 0.4);
    }

.styled-select[b-ibyfei9bs5] {
    font-size: 12px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    padding-right: 25px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.2s ease;
    /* Flecha personalizada */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
}

    .styled-select:focus[b-ibyfei9bs5] {
        background-color: #fafafa;
        box-shadow: 0 0 0 2px rgba(95, 67, 199, 0.5);
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f43c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    }

    /* Estilizar las opciones del dropdown */
    .styled-select option[b-ibyfei9bs5] {
        padding: 10px 12px;
        background-color: white;
        color: #333;
        font-size: 12px;
        border-radius: 0;
        margin: 0;
    }
    .styled-select option[b-ibyfei9bs5] {
        background-color: white;
        color: #333;
    }

        .styled-select option[selected][b-ibyfei9bs5] {
            background-color: #5f43c7;
            color: white;
        }

        /* Para navegadores webkit (Chrome, Safari) */
        .styled-select option:hover[b-ibyfei9bs5] {
            background-color: #f0f0ff !important;
            color: #5f43c7 !important;
        }

/* Mejoras adicionales para el contenedor */
.filter-section[b-ibyfei9bs5] {
    background: rgba(95, 67, 199, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px;
    border: 1px solid rgba(95, 67, 199, 0.2);
}
/* Tabla Geología */
.geologia-prof-col[b-ibyfei9bs5] {
    width: 80px;
    border-right: 2px solid #dee2e6;
    position: sticky;
    left: 0;
    background: white;
    z-index: 5;
}

.geologia-from-col[b-ibyfei9bs5] {
    width: 60px;
    border-right: 2px solid #dee2e6;
    position: sticky;
    left: 80px;
    background: white;
    z-index: 5;
}

.geologia-header[b-ibyfei9bs5] {
    height: 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.geologia-prof-cell[b-ibyfei9bs5] {
    border-bottom: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 4px;
    font-size: 0.75rem;
    background: #f8f9fa;
}

.geologia-from-cell[b-ibyfei9bs5] {
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e9ecef;
}

.geologia-cell[b-ibyfei9bs5] {
    vertical-align: middle;
    text-align: center;
    position: relative;
    cursor: help;
}

.geologia-badge[b-ibyfei9bs5] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.ventana-flotante-imagen[b-ibyfei9bs5] {
    animation: ventanaEntrada-b-ibyfei9bs5 0.3s ease-out;
}

@keyframes ventanaEntrada-b-ibyfei9bs5 {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ventana-flotante-imagen:hover[b-ibyfei9bs5] {
    box-shadow: 0 12px 48px rgba(0,0,0,0.5) !important;
}
.dropdown-item[b-ibyfei9bs5] {
    cursor: pointer;
    padding: 0.5rem 1rem;
}

    .dropdown-item:hover[b-ibyfei9bs5] {
        background-color: #f8f9fa;
    }

    .dropdown-item i[b-ibyfei9bs5] {
        width: 20px;
    }

.btn-group .btn[b-ibyfei9bs5] {
    padding: 0.25rem 0.5rem;
}

.table-hover tbody tr:hover[b-ibyfei9bs5] {
    background-color: rgba(0,0,0,.075);
}
/* /Pages/Login.razor.rz.scp.css */
.container-login[b-48fz7v3acc] {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 30px 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.password-recover[b-48fz7v3acc]{
    text-decoration:solid;
}
.form-content[b-48fz7v3acc] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.labels-form-login[b-48fz7v3acc] {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-input-login[b-48fz7v3acc] {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 14px;
    color: #374151;
    background-color: white;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}

    .form-input-login[b-48fz7v3acc]::placeholder {
        color: #9CA3AF;
        font-size: 14px;
    }

    .form-input-login:focus[b-48fz7v3acc] {
        border-color: #6C4CE1;
        box-shadow: 0 0 0 3px rgba(108, 76, 225, 0.1);
    }

.btn-login[b-48fz7v3acc] {
    width: 100%;
    height: 48px;
    background-color: #6C4CE1 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: 8px;
}

    .btn-login:hover:not(:disabled)[b-48fz7v3acc] {
        background-color: #5B3FD1 !important;
        transform: translateY(-1px);
    }

    .btn-login:disabled[b-48fz7v3acc] {
        background-color: #6C4CE1 !important;
        opacity: 0.7;
        cursor: not-allowed;
    }

.forgot-password-link[b-48fz7v3acc] {
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
    margin-top: 16px;
}

    .forgot-password-link:hover[b-48fz7v3acc] {
        color: #6C4CE1;
        text-decoration: underline;
    }

.mb-3[b-48fz7v3acc] {
    margin-bottom: 20px;
}

.mb-4[b-48fz7v3acc] {
    margin-bottom: 24px;
}

/* Logo al inicio */
.logo-container[b-48fz7v3acc] {
    text-align: center;
    margin-bottom: 40px;
}

    .logo-container img[b-48fz7v3acc] {
        max-height: 70px;
        max-width: 260px;
    }

/* Powered by fijo al final */
.powered-by[b-48fz7v3acc] {
    text-align: center;
    padding: 20px 0 10px 0;
    margin-top: auto; 
    flex-shrink: 0; 
}

    .powered-by img[b-48fz7v3acc] {
        max-height: 60px;
        opacity: 0.7;
    }
/* /Pages/ResetPassword/ResetPassword.razor.rz.scp.css */
.reset-password-container[b-ec6g3c1ksd] {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: white;
}

.form-group[b-ec6g3c1ksd] {
    margin-bottom: 1rem;
}

.form-control[b-ec6g3c1ksd] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.btn-primary[b-ec6g3c1ksd] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
}
/* /Pages/Sondajes/Sondajes.razor.rz.scp.css */
.container[b-umqb2dg3bu] {
    min-width: 100%;

}
.sondaje-page[b-umqb2dg3bu] {
    padding: 1rem;
}
.table[b-umqb2dg3bu]{
    width:100%;
}
.sondaje-table[b-umqb2dg3bu] {
    min-width:100%;
    background-color: #fff;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

    .sondaje-table th[b-umqb2dg3bu],
    .sondaje-table td[b-umqb2dg3bu] {
        border: 1px solid #ddd;
        padding: 0.75rem;
        text-align: center;
        vertical-align: middle;
    }
    .sondaje-table tr[b-umqb2dg3bu]{
        text-align:center;
    }
    .sondaje-table th[b-umqb2dg3bu] {
        background-color: #5F43C7;
        color:white;
        font-weight:bold;
        font-size:16px;
    }
    .sondaje-table td[b-umqb2dg3bu] {
        vertical-align:middle;
        font-size: 10px;
        font-weight:500;
        line-height:normal;
        color: #393939;
    }
    .sondaje-table .id-sondaje[b-umqb2dg3bu]{
        font-size:10px;
    }
.title[b-umqb2dg3bu] {
    color: white;
    font-weight:bold;
    font-size: 22px;
    margin-left:3%;
}
.table-header[b-umqb2dg3bu] {
    background: #5F43C7;
}
.container-card[b-umqb2dg3bu] {
    border-radius: 16px;
    background: #5F43C7;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    min-height: 90px;
    margin-bottom:30px;
}
.card-body[b-umqb2dg3bu] {
    align-content: center;
}
.sondajes-table[b-umqb2dg3bu] {
    border-collapse: separate;
    border-spacing: 0 10px;
}

    .sondajes-table thead th[b-umqb2dg3bu] {
        background: #5f43c7;
        color: white;
        border: none;
        padding: 12px 16px;
        font-weight: 500;
        font-size: 0.9rem;
        position: relative;
    }

        .sondajes-table thead th:first-child[b-umqb2dg3bu] {
            border-radius: 8px 0 0 8px;
        }

        .sondajes-table thead th:last-child[b-umqb2dg3bu] {
            border-radius: 0 8px 8px 0;
        }

        

    .sondajes-table tbody tr[b-umqb2dg3bu] {
        background: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .sondajes-table tbody td[b-umqb2dg3bu] {
        border: none;
        padding: 16px;
        vertical-align: middle;
        position: relative;
        background: white;
    }

        .sondajes-table tbody td:first-child[b-umqb2dg3bu] {
            border-radius: 8px 0 0 8px;
        }

        .sondajes-table tbody td:last-child[b-umqb2dg3bu] {
            border-radius: 0 8px 8px 0;
        }

        

        .sondajes-table tbody td.id-sondaje[b-umqb2dg3bu] {
            color: #2c3e50;
            font-weight: 600;
        }

        .sondajes-table tbody td:not(.id-sondaje):not(.actions-col)[b-umqb2dg3bu] {
            color: #495057;
        }

.badge-documentos[b-umqb2dg3bu] {
    background-color: #ff6266;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
}
.custom-tooltip[b-umqb2dg3bu] {
    position: relative;
    display: inline-block;
}

    .custom-tooltip .tooltip-text[b-umqb2dg3bu] {
        visibility: hidden;
        opacity: 0;
        background-color: #463193;
        color: white;
        font-weight: bold;
        text-align: center;
        border-radius: 8px;
        padding: 8px 12px;
        position: absolute;
        z-index: 1000;
        bottom: 125%;
        left: 50%;
        margin-left: -40px;
        font-size: 12px;
        white-space: nowrap;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

        /* Flecha del tooltip */
        .custom-tooltip .tooltip-text[b-umqb2dg3bu]::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: #463193 transparent transparent transparent;
        }

    /* Mostrar tooltip al hacer hover */
    .custom-tooltip:hover .tooltip-text[b-umqb2dg3bu] {
        visibility: visible;
        opacity: 1;
    }

/* Animación suave para los botones */
.action-btn[b-umqb2dg3bu] {
    transition: all 0.2s ease;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .action-btn:hover[b-umqb2dg3bu] {
        background-color: rgba(70, 49, 147, 0.1) !important;
        transform: translateY(-1px);
    }

    .action-btn i[b-umqb2dg3bu] {
        font-size: 14px;
    }
/* /Shared/DateRangePicker.razor.rz.scp.css */
.date-filter[b-lesvsuvqdo] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    position: relative;
}

.date-display[b-lesvsuvqdo] {
    background-color: rgba(255, 87, 34, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #FF5722;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .date-display:hover[b-lesvsuvqdo] {
        background-color: rgba(255, 87, 34, 0.15);
    }

/* DatePicker Popup Styles */
.date-picker-container[b-lesvsuvqdo] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

.date-picker-overlay[b-lesvsuvqdo] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.date-picker-popup[b-lesvsuvqdo] {
    position: relative;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 300px;
}

.date-range-inputs[b-lesvsuvqdo] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.date-input-group[b-lesvsuvqdo] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .date-input-group label[b-lesvsuvqdo] {
        color: #666;
        font-size: 0.875rem;
    }

    .date-input-group input[b-lesvsuvqdo] {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 0.5rem;
        font-size: 0.875rem;
    }

.date-picker-actions[b-lesvsuvqdo] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.btn[b-lesvsuvqdo] {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary[b-lesvsuvqdo] {
    background: #f5f5f5;
    color: #666;
}

    .btn-secondary:hover[b-lesvsuvqdo] {
        background: #e0e0e0;
    }

.btn-primary[b-lesvsuvqdo] {
    background: #FF5722;
    color: white;
}

    .btn-primary:hover[b-lesvsuvqdo] {
        background: #F4511E;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .date-picker-popup[b-lesvsuvqdo] {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
    }

    .date-filter[b-lesvsuvqdo] {
        width: 100%;
    }

    .date-display[b-lesvsuvqdo] {
        flex: 1;
        justify-content: center;
    }
}
/* /Shared/LoadingOverlay.razor.rz.scp.css */
.loading-overlay[b-77qcemy7g2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.spinner[b-77qcemy7g2] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 87, 34, 0.1);
    border-left-color: #FF5722;
    border-radius: 50%;
    animation: spin-b-77qcemy7g2 1s linear infinite;
}

.loading-content[b-77qcemy7g2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-text[b-77qcemy7g2] {
    color: #FF5722;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    animation: pulse-b-77qcemy7g2 1.5s ease-in-out infinite;
}

@keyframes spin-b-77qcemy7g2 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-b-77qcemy7g2 {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}
/* /Shared/ViewToggleControls.razor.rz.scp.css */
.view-toggle-controls[b-y01fhsu8tu] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.view-toggle-button[b-y01fhsu8tu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background-color: #f3f4f6;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

    .view-toggle-button:hover[b-y01fhsu8tu] {
        background-color: #e5e7eb;
    }

    .view-toggle-button.active[b-y01fhsu8tu] {
        background-color: #2563eb;
        color: white;
    }

    .view-toggle-button i[b-y01fhsu8tu] {
        font-size: 1.2rem;
    }
