#yes-button-container {
    text-align: center;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.yes-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 30px 60px;
    font-size: 48px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.yes-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.yes-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#vote-message {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    min-height: 30px;
    display: none;
}