.oebk-profile-change-panel {
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid #dcdcde;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.oebk-profile-pending-note {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-left: 4px solid #dba617;
    background: #fff8df;
}

.oebk-form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    background: #fafafa;
    font-weight: 600;
}

.oebk-form-check input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.oebk-member-edit-form textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 150px;
    padding: 10px 11px;
    border: 1px solid #8c8f94;
    border-radius: 7px;
    background: #fff;
    font: inherit;
    resize: vertical;
}

.oebk-language-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.oebk-other-language-field {
    margin-top: 18px;
}

@media (max-width: 900px) {
    .oebk-language-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .oebk-profile-change-panel {
        padding: 22px;
    }

    .oebk-language-grid {
        grid-template-columns: 1fr;
    }
}
