/*
 * Welcome Screen Polish version - style
 * Author: jakubp000
 * License: GPLv2 or later
 */

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.welcome-screen {
    text-align: center;
}

.welcome-screen h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.loading-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}