/* Eliminamos el margen y padding global del body */
body {
    margin: 0;
    padding: 0;
    font-family:Arial;
    overflow-x: hidden;
}

/* Estilo del Loader */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Animación del Loader */
.loader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #B8860B;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
