
/* --- ESTILOS DE BOTONES --- */
.backup-btn-primario {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #71639e;
    border-radius: 8px;
    background-color: #71639e;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.backup-btn-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #f8f9fa;
    padding: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-sizing: border-box;
}


.backup-btn-primario:hover {
    background-color: #5a4f7f;
    border-color: #443b60;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.backup-btn-primario i {
    margin-right: 8px;
}



/* --- ESTILOS DEL MODAL --- */
.backup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.backup-modal-contenedor {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.backup-modal-btn button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}


/**********************************************************/
/* --- INICIO: SECCIÓN RESPONSIVE PARA MÓVILES --- */
/**********************************************************/

@media (max-width: 768px) {

  

    /* Oculta el texto de los botones para dar más espacio a los íconos */
    .solo-desktop {
        display: none;
    }

    /* 2. Solución para los Botones: Fila única y flexible */
    .backup-btn-section {
        flex-wrap: nowrap; /* Evita que los botones se apilen */
        padding: 22px;
        gap: 8px; /* Reduce el espacio entre botones */
    }

    .backup-btn-primario {
        flex: 1; /* Hace que cada botón ocupe el mismo espacio */
        width: auto; /* Anula el ancho fijo */
        min-width: 0; /* Permite que el botón se encoja */
        padding: 10px 5px; /* Menos padding lateral */
        font-size: 18px; /* Aumenta el tamaño del ícono */
    }

    .backup-btn-primario i {
        margin: 0; /* Quita márgenes extra del ícono en móvil */
    }

    
}