#loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.progress-bar {
    width: 80%;
    max-width: 300px;
    height: 10px;
    background-color: #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0;
    height: 100%;
    background-color: #8b5f42;
    transition: width 0.3s;
}
