body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

#splash-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    position: relative;
}

.progress-container {
    width: 200px;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background-color: #007bff;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.text-container {
    text-align: center;
}

.text-container img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.support-email {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: #7e7e7e;
    background-color: #ddd;
}

.loading-text {
    font-size: 2em;
    margin-bottom: 20px;
}

.support-email a {
    color: #333;
    text-decoration: none;
}
