/* Admin Page */
.wrap h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.button-primary {
    background-color: #ff69b4 !important;
    border: none !important;
    padding: 10px 20px !important;
    color: white !important;
}

.wrap form input[type="text"] {
    width: 300px;
    margin-bottom: 10px;
}

.wp-list-table th, .wp-list-table td {
    padding: 8px;
    text-align: left;
}

/* Public Page */
.voting-system {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.voting-system h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.progress-bars {
    margin-bottom: 20px;
}

.progress {
    height: 20px;
    margin: 5px 0;
    border-radius: 10px;
}

.progress[data-label="sim"] {
    background-color: #4a4ae9;
}

.progress[data-label="nao"] {
    background-color: #e94a4a;
}

.progress[data-label="abstencao"] {
    background-color: #666;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.vote-btn {
    padding: 10px 20px;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.admin-actions {
    margin-top: 20px;
}

.voters-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    background: white;
    width: 50%;
    margin: 100px auto;
    padding: 20px;
    border-radius: 5px;
}

.close-modal {
    float: right;
    cursor: pointer;
    font-size: 24px;
}