﻿/* Overlay del Loader */
.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
    display: grid;
    z-index: 999;
}
/** Color of text when ho
/* Spinner */
.spinner {
    border: 6px solid #f3f3f3; /* Fondo */
    border-top: 6px solid #3498db; /* Color del spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
