/*
 * File: chicken-restock-voting/assets/css/voting.css
 * Description: Basic styles for the voting box and messages.
 */

/* Container around the voting area */
.koops-restock-container {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
}

/* The Vote Button */
button.koops-vote-btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}

/* Success Message */
.koops-vote-message.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid transparent;
}

/* Error Message */
.koops-vote-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid transparent;
}

/* Login Notice */
.koops-login-notice {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}