/* کانتینر اصلی آپلودر */
.custom-pdf-uploader {
    background-color: #2d2d2d;
    color: #e0e0e0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    font-family: inherit; /* از فونت قالب استفاده می‌کند */
    border: 1px solid #444;
    margin-bottom: 25px;
}

/* آیکون */
.custom-pdf-uploader .uploader-icon svg {
    stroke: #a0a0a0;
    margin-bottom: 15px;
}

/* متن راهنما */
.custom-pdf-uploader .upload-instructions {
    font-size: 1.1rem;
    margin: 0 0 20px 0;
}
.custom-pdf-uploader .required {
    color: #e74c3c;
}

/* استایل دکمه آپلود اصلی */
.custom-pdf-uploader .upload-button {
    background-color: #9d642b;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block; /* برای اینکه margin و padding درست کار کند */
    transition: background-color 0.3s ease;
}
.custom-pdf-uploader .upload-button:hover {
    background-color: #b57a3f;
}

/* بخش نمایش وضعیت آپلود */
#upload_status {
    margin-top: 15px;
    font-weight: bold;
    min-height: 20px; /* برای جلوگیری از پرش صفحه */
    color: #2ecc71; /* رنگ سبز برای موفقیت */
}
#upload_status.error {
    color: #e74c3c; /* رنگ قرمز برای خطا */
}

/* نوار پیشرفت */
#upload_progress_container {
    width: 100%;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 5px;
    display: none; /* این توسط جاوااسکریپت شما نمایش داده می‌شود */
    margin-top: 10px;
    overflow: hidden; /* برای گرد شدن گوشه‌های نوار داخلی */
}
#upload_progress_bar {
    width: 0%;
    height: 24px;
    background-color: #0073aa;
    border-radius: 4px;
    text-align: center;
    color: white;
    line-height: 24px;
    font-size: 12px;
    transition: width 0.3s ease;
}

/* استایل بخش انتخاب فایل‌های قبلی */
.previous-files-wrapper {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #444;
}
.previous-files-wrapper .previous-files-label {
    margin-bottom: 10px;
    font-weight: bold;
}
#previous_pdf_file {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #555;
    background-color: #333;
    color: #e0e0e0;
}