
/* Frontend CSS for E-Voting Elections */
.evoting-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.verification-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.verification-option {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.position-voting-section {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.candidates-list {
    margin-bottom: 15px;
}

.candidate-item {
    margin-bottom: 10px;
}

.voted-message {
    color: #3c763d;
    font-weight: bold;
}

.vote-message {
    margin-top: 10px;
    padding: 5px;
}

.vote-message.success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.vote-message.error {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}
        