/* public/css/loading.css */
@keyframes fillBar {
    0% { width: 0; }
    100% { width: 100%; }
}

body {
    background: rgb(237, 237, 225);
    background: radial-gradient(circle, rgba(237, 237, 225, 1) 0%, rgba(182, 167, 148, 1) 100%); /* Fondo color crema */
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loader-bar {
    width: 100%;
    height: 20px; /* Altura más grande */
    background: #d3d3d3;
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: #6f4e37; /* Color café */
    animation: fillBar 3s linear forwards;
}

.loader-image {
    width: 250px; /* Tamaño más grande del GIF */
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.welcome-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900; /* Negrita */
    font-size: 24px;
    color: #6f4e37; /* Color café */
    margin-bottom: 20px;
    text-align: center;
}
