/* Contenedor general del modal */
#exportModal {
    width: 100%;
    height: auto;
    overflow: visible;
}

#exportModal.modal {
    z-index: 1055 !important;
}

/* Centrado correcto del contenido */
#exportModal .modal-dialog {
    margin: 5% auto;
    z-index: 1056 !important;
}

/* Mantener tus estilos visuales */
#exportModal .modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 400px;
    max-width: 95%;
    height: 60%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Cabecera */
#exportModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#exportModal .modal-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

#exportModal .modal-header .close {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

/* Cuerpo */
#exportModal .modal-body label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

#exportModal .modal-body select {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

/* Toggle estilo switch */
#exportModal .form-check {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
}

#exportModal .form-check-input {
    width: 40px;
    height: 20px;
    appearance: none;
    background-color: #ccc;
    border-radius: 20px;
    position: relative;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

#exportModal .form-check-input::before {
    content: '';
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: transform 0.3s ease;
}

#exportModal .form-check-input:checked {
    background-color: #13235B;
}

#exportModal .form-check-input:checked::before {
    transform: translateX(20px);
}

/* Pie */
#exportModal .modal-footer {
    display: flex;
    justify-content: flex-end;
}

#exportModal .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
}

#exportModal .btn-primary {
    background-color: #13235B;
    color: white;
}

#exportModal .btn-secondary {
    background-color: #F1F1F1;
    color: #000;
}
