/* Globální styly */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h2 {
    color: #333;
}

/* Kontejner pro přihlašovací tlačítka */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styl pro tlačítka */
.login-button {
    width: 200px;
    padding: 10px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0056b3;
}

/* Styl pro odkazy v seznamu */
ul li a {
    padding: 3px;
    display: block;
    border-radius: 5px;
    color: #333;
    transition: background-color 0.3s;
}

ul li a:hover {
    background-color: #e0ffff;
}

.version-text {
    display: block;
    text-align: center;
}
