body {
font-family: 'Poppins', sans-serif; background-color: #fff; margin: 0;
padding: 0;
text-align: center; }
.voting-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.battle-container {
display: flex;
justify-content: center;
gap: 20px;
margin: 20px auto; max-width: 1200px; }
.image-box {
background-color: #fff; border: 1px solid #ddd; border-radius: 10px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); width: 350px; text-align: center;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.image-box img {
max-width: 100%;
border-radius: 10px; margin-bottom: 10px;
}
.bottom-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end; width: 100%;
}
.statistics {
font-size: 14px; margin-top: auto;
margin-bottom: 10px; display: flex;
justify-content: space-around;
width: 100%;
}
.votebutton {
font-family: 'Poppins', sans-serif; background-color: #28a745; color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
.votebutton:hover {
background-color: #218838; }
button:disabled {
background-color: red;
cursor: not-allowed;
opacity: 0.7;
}
.admin-info {
background-color: #f9f9f9;
padding: 10px;
margin: 10px auto;
max-width: 600px;
border: 1px solid #ddd;
border-radius: 5px;
} .color-box-red {
display: inline-block;
width: 18px;
height: 18px;
background-color: red;
margin-left: 10px;
vertical-align: middle;
border-radius: 3px;
}
.color-box-blue {
display: inline-block;
width: 18px;
height: 18px;
background-color: blue;
margin-left: 10px;
vertical-align: middle;
border-radius: 3px;
}