﻿body {
}
#tableReceive_wrapper {
    max-height: 400px; /*تنظیم حداکثر ارتفاع برای جدول */
    overflow-y: auto; /*فعال کردن اسکرول عمودی */
    overflow-x: auto; /* فعال کردن اسکرول افقی */
}
#tableError_wrapper {
    max-height: 400px; /*تنظیم حداکثر ارتفاع برای جدول */
    overflow-y: auto; /*فعال کردن اسکرول عمودی */
    overflow-x: auto; /* فعال کردن اسکرول افقی */
}
#tableData_wrapper {
    max-height: 400px; /*تنظیم حداکثر ارتفاع برای جدول */
    overflow-y: auto; /*فعال کردن اسکرول عمودی */
    overflow-x: auto; /* فعال کردن اسکرول افقی */
}
#tableDataView_wrapper {
    max-height: 400px; /*تنظیم حداکثر ارتفاع برای جدول */
    overflow-y: auto; /*فعال کردن اسکرول عمودی */
    overflow-x: auto; /* فعال کردن اسکرول افقی */
}

/* اضافه کردن رنگ پس‌زمینه و تغییرات ظاهری مودال */
.modal-content {
    border-radius: 15px; /* گوشه‌های گرد */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* سایه نرم */
}

/* تغییر رنگ پس‌زمینه و متن هدر مودال */
.modal-header {
    background-color: #007bff; /* رنگ پس‌زمینه آبی */
    color: white; /* رنگ متن سفید */
    font-weight: bold;
    font-sizee:14px;
}

/* تغییر استایل دکمه‌ها */
.btn-close {
    background-color: transparent;
    border: none;
    font-size: 1em;
}

/* استایل دکمه‌های مودال */
.btn-secondary {
    background-color: #6c757d; /* رنگ دکمه بستن */
    border-color: #6c757d;
}

.btn-success {
    background-color: #28a745; /* رنگ دکمه ذخیره */
    border-color: #28a745;
}

/* استایل محتوا */
.modal-body {
    font-family: 'Arial', sans-serif;
    font-size: 1.1em;
}

/* افزودن انیمیشن به مودال */
.modal.fade .modal-dialog {
    transform: translate(0, -50%);
    animation: modalFadeIn 0.5s ease-in-out;
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: translate(0, -50%);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

#tableReceive th {
    text-align: center;
    vertical-align: middle;
}

    #tableReceive th button {
        margin-top: 10px;
    }

.dataTables_filter input {
    width: 200px;
    margin: 10px;
    border-color: black !important;
}

