.contest-2026-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contest-form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.contest-form .form-group {
    margin-bottom: 20px;
}

.contest-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.contest-form input[type="text"],
.contest-form input[type="number"],
.contest-form input[type="url"],
.contest-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contest-form input:focus,
.contest-form select:focus {
    border-color: #007cba;
    outline: none;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.submit-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button:hover {
    background: #005a87;
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-messages {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.contest-closed-message {
    text-align: center;
    padding: 40px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* Стили для виджетов расписания */
.contest-schedule-widget,
.contest-status-widget,
.contest-not-accepting-message {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.schedule-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.schedule-list li {
    margin-bottom: 8px;
}

.current-quarter-notice {
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

.accepting-entries {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}

.not-accepting-entries {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
}

.status-open {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

.status-waiting {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
}

.quarter-notice {
    background: #e7f3ff;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 4px solid #007cba;
    margin-bottom: 20px;
}

.contest-not-accepting-message .schedule-info {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.mini-schedule {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.current-quarter-info {
    margin-bottom: 20px;
}