body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.botoes {
    justify-content: space-between;
    margin-top: 20px;
}

.botao {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1em;
    transition: background-color 0.3s;
}

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

input, button {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #28a745;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

#ranking {
    margin-top: 20px;
}
h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2em;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.botao-principal {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botao-principal:hover {
    background-color: #218838;
}

.botao-secundario {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.botao-secundario:hover {
    background-color: #0056b3;
}

#rankingList {
    list-style-type: none;
    padding: 0;
}

#rankingList li {
    background-color: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

#rankingList li:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Medal styles */
#rankingList li:nth-child(1)::before {
    content: '🥇';
    margin-right: 10px;
    font-size: 24px;
}

#rankingList li:nth-child(2)::before {
    content: '🥈';
    margin-right: 10px;
    font-size: 24px;
}

#rankingList li:nth-child(3)::before {
    content: '🥉';
    margin-right: 10px;
    font-size: 24px;
}

.botoes {
    text-align: center;
    margin-top: 20px;
}

.botao {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.botao:hover {
    background-color: #45a049;
}