/* --- استایل‌های فرم آیدی بازیکن --- */

.oap-player-id-field {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 1.5em !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.oap-player-id-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.oap-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.oap-input-wrapper input.input-text {
    flex-grow: 1;
    margin: 0 !important;
}

/* استایل‌های ساختاری برای دکمه بررسی آیدی */
#oap_check_id_button {
    flex-shrink: 0;
    white-space: nowrap;
    margin: 0 !important;
}

.oap-message {
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: 5px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.oap-message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.oap-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* --- بخش واکنش‌گرایی برای موبایل --- */
@media (max-width: 768px) {
    .oap-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .oap-player-id-field {
        padding: 15px;
    }
}