body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none; /* Inicialmente oculto */
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Queries para Responsividad */

/* Tamaños de pantalla pequeños (móviles) */
@media (max-width: 480px) {
    .loader {
        width: 30px;
        height: 30px;
        border-width: 6px;
    }
}

/* Tamaños de pantalla medianos (tabletas) */
@media (min-width: 481px) and (max-width: 768px) {
    .loader {
        width: 40px;
        height: 40px;
        border-width: 7px;
    }
}

/* Tamaños de pantalla grandes (escritorios) */
@media (min-width: 769px) {
    .loader {
        width: 50px;
        height: 50px;
        border-width: 8px;
    }
}
