
#vote-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#vote-message {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid;
    border-radius: 4px;
}

#vote-message.success {
    background: #ecf7ed;
    border-color: #46b450;
    color: #155724;
}

#vote-message.error {
    background: #f9e9e9;
    border-color: #dc3232;
    color: #721c24;
}

#vote-message strong {
    display: block;
    font-size: 16px;
    font-family: "Georgia", "Times New Roman", serif !important; 
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: "Georgia", "Times New Roman", serif !important;
    color: #333;
}

.form-field input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Georgia", "Times New Roman", serif !important;
}

.form-field input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

#generation-vote-form h3 {
    margin: 30px 0 10px 0;
    color: #333;
}

.instruction-text {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
    font-family: "Georgia", "Times New Roman", serif !important;
}

.vote-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.single-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px
}
.single-row .form-field {
    width: 100%;
}
.single-row .form-field input{
    width: 100%;
}

@media (max-width: 768px) {
    .vote-options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.vote-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vote-option-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 4px;
}

.vote-option-row:hover {
    background: #f0f0f0;
}

.option-label {
    flex: 1;
    font-weight: 500;
    color: #333;
    font-size: 15px;
    font-family: "Georgia", "Times New Roman", serif !important;
}

.vote-select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-family: "Georgia", "Times New Roman", serif !important;
    min-width: 60px;
}

.vote-select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

#submit-vote-btn {
    background: #0073aa;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family:Georgia !important;
    font-weight: 600;
    transition: background 0.3s ease;
}

#submit-vote-btn:hover {
    background: #005a87;
}

#submit-vote-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#submit-vote-btn:active {
    transform: translateY(1px);
}
#generation-vote-form h3{
 font-family: "Georgia", "Times New Roman", serif !important;
 }
 
 .votes-pagination {
    margin: 20px 0;
    text-align: center;
}
.votes-pagination a,
.votes-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0073aa;
    background: #fff;
}
.votes-pagination a:hover {
    background: #0073aa;
    color: #fff;
}
.votes-pagination .current {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
}
.votes-pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
}
.votes-info {
    margin: 15px 0;
    color: #666;
    font-size: 14px;
}
@media (max-width: 480px) {

.single-row{
	display: flex;
    flex-flow: wrap;
}

}