#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'SB Sans', sans-serif;
}

#preloader-text {
    font-size: 24px;
    margin-bottom: 20px;
}

#preloader-progress-container {
    width: 80%;
    max-width: 600px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}

#preloader-progress-bar {
    width: 0;
    height: 100%;
    background: #4CAF50;
    transition: width 0.3s ease-in-out;
}

.hidden {
    display: none !important;
}
