/* .loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m: 
        conic-gradient(#0000 10%,#000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
    position: relative;
    top: 35%;
    left: 45%;
}

@keyframes l3 {to{transform: rotate(1turn)}}
  
.container-loader {
    position: fixed;
    height: 100% !important;
    width: 100vw;
    background: rgba(255, 255, 255, 0.6);
    z-index: 999;
}
.container-loader-filled {
    position: fixed;
    height: 100% !important;
    width: 100vw;
    background: rgba(255, 255, 255, 0.97);
    z-index: 999;
} */

/* Diseño del Loader Global */
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m: 
        conic-gradient(#0000 10%,#000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {to{transform: rotate(1turn)}}
  
.container-loader-filled {
    position: fixed;
    height: 100vh !important;
    width: 100vw;
    background: rgba(255, 255, 255, 0.97);
    z-index: 999999;
    top: 0;
    left: 0;
    /* Centrado forzado por CSS puro */
    display: flex;
    justify-content: center;
    align-items: center;
}