body {
    font-family: "Quicksand", sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #003e58;
}
.vote-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vote-container {
    padding: 40px;
    text-align: center;
}

h1 {
    color: #003e58;
}

#voteContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.columna-categoria {
    flex: 1 1 220px;
    max-width: 300px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


/* Colores por categoría */
.categoria-A { background-color: #20b5ff; }
.categoria-B { background-color: #ff6676; }
.categoria-C { background-color: #87f46e; }
.categoria-D { background-color: #ffda50; }

.vote-button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #003e58;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.vote-button:hover {
    background-color: #bddb6b;
    color: black;
    font-weight: bold;
}

#totalVotes {
    margin-top: 20px;
    font-weight: bold;
}
.reset-button {
    margin-top: 20px;
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.reset-button:hover {
    background-color: #e65100;
}
@media (max-width: 900px) {
    .columna-categoria {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .columna-categoria {
        flex: 1 1 100%;
    }
}
