body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
    line-height: 1.6;
}
h1,h2 { text-align:center; }
.vote-container {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:20px;
}
.vote-container button {
    background:#4caf50;
    color:white;
    border:none;
    padding:1rem 2rem;
    margin:0.5rem;
    border-radius:8px;
    cursor:pointer;
    font-size:1rem;
    transition:0.2s;
}
.vote-container button:hover { background:#45a049; }

#ranking li {
    margin:5px 0;
    padding:5px 10px;
    border-radius:5px;
    background:#f1f1f1;
    transition:0.2s;
}
#ranking li:hover { background:#ddd; }
.hidden { display:none; }

form input[type=text] {
    padding:0.5rem;
    font-size:1rem;
    border-radius:5px;
    border:1px solid #ccc;
    flex:1 1 300px;
    margin:5px;
}
form button {
    background:#2196f3;
    color:white;
    border:none;
    padding:0.5rem 1rem;
    border-radius:5px;
    cursor:pointer;
}
form button:hover { background:#1976d2; }

#showMore {
    background:#ff9800;
    padding:0.5rem 1rem;
    margin:10px auto;
    display:block;
    border:none;
    border-radius:5px;
    cursor:pointer;
    color:white;
}
#showMore:hover { background:#fb8c00; }

.msg {
    text-align:center;
    color:green;
    font-weight:bold;
}

.suggestion-form {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:10px;
}

.vote-result {
    background:#ffe082;
    border-radius:8px;
    padding:10px;
    margin:15px 0;
    text-align:center;
}
.vote-result p {
    margin:5px 0;
    font-weight: normal;
}

.vote-result-1, .vote-result-2 {
    font-weight: bold;
}

.vote-result-1::before, .vote-result-2::before {content: "«";}
.vote-result-1::after,  .vote-result-2::after  {content: "»";}





