/* باکس اصلی با حاشیه نرم و سایه ملایم */
.apcf-custom-fields-wrapper {
    background: #ffffff;
    border: 1px solid #e1e1e1 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 20px 0 25px 0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* استایل سوال اصلی */
.apcf-question {
    color: #242424;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px !important;
    display: block;
    line-height: 1.4;
}

/* ردیف گزینه‌ها */
.apcf-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* استایل هر گزینه به شکل دکمه‌های مینیمال */
.apcf-options label {
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: #4a4a4a;
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

.apcf-options label:hover {
    background: #fffdf5;
    border-color: #efb129;
}

/* استایل دایره انتخاب (Radio) مطابق رنگ زرد برند */
.apcf-options input[type="radio"] {
    margin-left: 12px; /* فاصله برای زبان فارسی */
    width: 18px;
    height: 18px;
    accent-color: #efb129;
}

/* بخش آپلود فایل */
.apcf-upload-wrapper {
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px dashed #efb129;
    border-radius: 6px;
}

.apcf-upload-wrapper label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: #666;
}

#apcf_file_input {
    font-size: 13px;
    width: 100%;
}

/* بخش یادداشت متنی */
.apcf-note-wrapper textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    font-size: 13px;
    background: #fff;
    resize: none;
    margin-top: 10px;
}

.apcf-note-wrapper textarea:focus {
    border-color: #efb129;
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 177, 41, 0.1);
}