/*
https://modelsite.ir
*/

body {
    direction: rtl;

}

/* --- استایل‌های فرم ورودی --- */
.invoice-wrapper {
    max-width: 95%;
    margin: 30px auto;
    padding: 20px;
}

#invoice-form {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.details-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    width: 48%;
    background-color: #fff;
}

.details-box h3 {
    margin-top: 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.form-group label {
    flex: 0 0 50px;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="number"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#invoice-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#invoice-items-table th, 
#invoice-items-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-size: 13px;
}

#invoice-items-table th {
    background-color: #e9e9e9;
}

#invoice-items-table input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
}

.btn-add-row { background-color: #28a745; color: white; }
.btn-remove-row { background-color: #dc3545; color: white; padding: 5px 10px; font-size: 12px; }
.btn-generate-pdf { background-color: #007bff; color: white; display: block; width: 100%; margin-top: 20px; font-size: 18px; }

.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.loader-text { font-size: 20px; font-weight: bold; }

/* --- استایل‌های پیش‌نمایش PDF رسمی --- */
.official-invoice {
    border: 2px solid #000;
    padding: 15px;
    font-size: 11px;
    color: #000;
}

.official-invoice p {
    margin: 4px 0;
}

.official-invoice .inv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.official-invoice .inv-header-center h2 {
    margin: 0;
    font-size: 18px;
}

.official-invoice .details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
    border: 1px solid #000;
}

.official-invoice .details-table th,
.official-invoice .details-table td {
    border: 1px solid #000;
    padding: 5px;
    vertical-align: top;
    text-align: right;
}

.official-invoice .details-table th {
    background-color: #f2f2f2;
    text-align: center;
    font-weight: bold;
}

.official-invoice .details-table span {
    font-weight: bold;
}

.official-invoice .inv-items {
    margin-top: 10px;
}

.official-invoice .items-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
}

.official-invoice .items-table th,
.official-invoice .items-table td {
    border: 1px solid #000;
    padding: 4px;
    text-align: center;
    vertical-align: middle;
}

.official-invoice .items-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.official-invoice .inv-footer {
    margin-top: 5px;
    border-top: 2px solid #000;
    padding-top: 5px;
}

.official-invoice .footer-top {
    display: flex;
    justify-content: space-between;
}

.official-invoice .sale-conditions,
.official-invoice .notes {
    border: 1px solid #000;
    padding: 5px;
    width: 49.5%;
}

.official-invoice .checkbox {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    margin: 0 5px;
    position: relative;
    top: 2px;
}
.official-invoice .checkbox.checked::after {
    content: '✔';
    position: absolute;
    top: -4px;
    left: 1px;
    font-size: 14px;
}

.official-invoice .signatures {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.official-invoice .sig-box {
    border: 1px solid #000;
    width: 49.5%;
    height: 80px;
    padding: 5px;
    text-align: center;
}

 
/* --- بهبود رسپانسیو جدول --- */

/* این کدها فقط برای صفحه‌های با عرض کمتر از ۷۶۸ پیکسل اعمال می‌شوند */
@media screen and (max-width: 768px) {
  /* یک محفظه برای جدول ایجاد می‌کنیم که اسکرول افقی داشته باشد */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* برای اسکرول روان در دستگاه‌های iOS */
  }

  /* جدول را داخل محفظه قرار می‌دهیم و عرض آن را به قدری زیاد می‌کنیم که اسکرول لازم باشد */
  #invoice-items-table {
    min-width: 600px; /* این مقدار را بر اساس تعداد ستون‌ها تنظیم کنید */
    width: 100%;
  }

  /* فونت و padding سلول‌ها را برای نمایش بهتر در موبایل کوچک‌تر می‌کنیم */
  #invoice-items-table th,
  #invoice-items-table td {
    font-size: 12px;
    padding: 6px;
    white-space: nowrap; /* از شکستن متن به خط بعدی جلوگیری می‌کند */
  }

  /* ورودی‌های داخل جدول را کوچک‌تر می‌کنیم */
  #invoice-items-table input {
    font-size: 12px;
  }
}