/* Základní nastavení stylů */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Stylování vstupního pole */
input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="number"]:focus {
    border-color: #007bff;
}

/* Stylování tlačítek pro členy */
.members button {
    width: 100px;
    padding: 10px;
    font-size: 16px; /* Zvětšení velikosti písma */
    font-weight: bold; /* Zesílení písma */
    color: #333; /* Barva textu */
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.members button.selected {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Přidání stínu pro lepší čitelnost */
}

.members button img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 5px;
}


.members button.selected {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
}

.members button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Stylování hlavního tlačítka */
button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

button:active {
    transform: translateY(1px);
}

/* Stylování výsledkové části */
#result {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}
