/**
 * SRR Contests - Contest Form Specific Styles
 *
 * This file contains styles specifically for the contest submission form,
 * including elements for keyword contests.
 *
 * @package SRR_Contests
 * @since 1.1.0
 */

/* --- Keyword Contest Styles --- */
.keyword-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.keyword-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.keyword-input-group {
    margin-bottom: 20px;
}

.contest-keyword input[type="text"] {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 6px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.contest-keyword input[type="text"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0,124,186,0.1);
}

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

#keyword-message.success {
    margin: 20px 0;
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#keyword-message.error {
    margin: 20px 0;
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}