body {
    margin: 0;
    padding: 0;
    background: rgb(90, 207, 135);
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(90, 207, 135);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

#logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#logo {
    width: 200px; 
    height: auto;
    margin-bottom: 40px; 
}

#progress-bar-container {
    width: 70%;
    height: 10px;
    background: rgba(189, 255, 214, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

#progress-bar {
    width: 0;
    height: 100%;
    background: #37A663;
    transition: width 0.3s ease;
}
