/* Punto Kitap - Hesabım sayfası (hesabim.html şablonu) */

/* Account Layout */
.account-layout {
    padding: 2rem 0 3rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    min-height: 600px;
}

.account-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    height: fit-content;
    position: sticky;
    top: 140px;
}

.account-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.user-info h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.user-info p {
    color: #6B7280;
    font-size: 0.85rem;
    margin: 0;
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu li {
    margin-bottom: 0.5rem;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #1F2937;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.account-menu a:hover {
    background-color: #FEE2E2;
    color: #B91C1C;
}

.account-menu a.active {
    background-color: #B91C1C;
    color: #fff;
}

.account-menu .menu-icon {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Nav group label (Finansal başlığı) */
.account-menu .nav-group-label {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    padding: 0 0.5rem;
    pointer-events: none;
}

.account-menu .nav-group-label span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pk-gray, #9CA3AF);
}

.account-menu .nav-group-label i {
    font-size: 0.85rem;
    color: var(--pk-primary, #B91C1C);
}

/* Bekleyen siparişler — soluk kırmızı */
.account-menu a.pending-orders {
    border-left: 3px solid #f97316;
    padding-left: calc(0.75rem - 3px);
}

.account-menu a.pending-orders:hover,
.account-menu a.pending-orders.active {
    background-color: #fff7ed;
    color: #ea580c;
    border-left-color: #ea580c;
}

/* Account Content */
.account-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    font-size: 0.85rem;
}

.account-content table {
    font-size: 0.8rem;
}

.account-content .form-label,
.account-content label {
    font-size: 0.8rem;
}

.account-content .form-control,
.account-content .form-select {
    font-size: 0.8rem;
}

.account-content .card {
    font-size: 0.8rem;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.account-title {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.account-subtitle {
    color: #6B7280;
    font-size: 0.85rem;
    margin: 0;
}

.account-actions {
    display: flex;
    gap: 0.75rem;
}

/* Account sayfası butonları */
.account-content .btn {
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.account-content .btn-primary {
    background: #B91C1C;
    color: #fff;
}

.account-content .btn-primary:hover {
    background: #991B1B;
    color: #fff;
}

.account-content .btn-outline {
    background: #fff;
    color: #B91C1C;
    border: 1px solid #B91C1C;
}

.account-content .btn-outline:hover {
    background: #FEE2E2;
    color: #B91C1C;
}

/* =============================================
   Netsis - Ortak stiller (Faturalar, Siparişler, Cari Hareketler)
   ============================================= */

/* Kart listesi (Faturalar, Siparişler) */
.invoices-list,
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invoice-card,
.order-card {
    background-color: #F9FAFB;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #E5E7EB;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.invoice-card:hover,
.order-card:hover {
    box-shadow: 0 5px 15px rgba(185, 28, 28, 0.08);
    border-color: #FEE2E2;
}

.invoice-card-header,
.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.invoice-card-info h4,
.order-card-info h4 {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.invoice-card-meta,
.order-card-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.invoice-meta-item,
.order-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.invoice-meta-label,
.order-meta-label {
    font-size: 0.78rem;
    color: #6B7280;
}

.invoice-meta-value,
.order-meta-value {
    font-weight: 600;
    font-size: 0.88rem;
    color: #111827;
}

.invoice-card-actions,
.order-card-actions {
    display: flex;
    gap: 0.5rem;
}

/* Aksiyon butonları */
.invoice-action-btn,
.order-action-btn {
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.invoice-action-btn.view,
.order-action-btn.view {
    background-color: #B91C1C;
    color: #fff;
}

.invoice-action-btn.view:hover,
.order-action-btn.view:hover {
    background-color: #991B1B;
    color: #fff;
}

.invoice-action-btn.secondary,
.order-action-btn.secondary {
    background-color: #fff;
    color: #374151;
    border: 1px solid #E5E7EB;
}

.invoice-action-btn.secondary:hover,
.order-action-btn.secondary:hover {
    background-color: #F9FAFB;
    color: #111827;
}

/* Durum badge */
.order-status-badge,
.status-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #FEF3C7;
    color: #92400E;
    white-space: nowrap;
}

.order-status-badge.pending {
    background-color: #FEF3C7;
    color: #92400E;
}

.order-status-badge.approved {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.order-status-badge.completed {
    background-color: #D1FAE5;
    color: #065F46;
}

.order-status-badge.unknown {
    background-color: #E5E7EB;
    color: #374151;
}

/* Detay kartı (FaturaDetay, SiparisDetay, CariHareketler) */
.invoice-detail-card,
.order-detail-card,
.ch-detail-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
}

.invoice-header-info,
.order-header-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.invoice-company,
.order-company {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    color: #B91C1C;
    margin-bottom: 0.25rem;
}

.company-address {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
}

.invoice-meta-grid,
.order-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
}

.invoice-meta-block,
.order-meta-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meta-label {
    font-size: 0.78rem;
    color: #6B7280;
    font-weight: 500;
}

.meta-value {
    font-weight: 600;
    font-size: 0.92rem;
    color: #111827;
}

/* Toplam özet satırı */
.invoice-totals-summary,
.order-totals-summary {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.total-summary-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.total-summary-label {
    font-size: 0.8rem;
    color: #6B7280;
}

.total-summary-value {
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
}

.total-summary-item.highlight .total-summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #B91C1C;
}

/* Kalem tabloları */
.section-title {
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 1rem;
}

.invoice-items-table,
.order-items-table,
.ch-table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-items-table thead,
.order-items-table thead,
.ch-table thead {
    background-color: #F9FAFB;
}

.invoice-items-table th,
.order-items-table th,
.ch-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.82rem;
    white-space: nowrap;
}

.invoice-items-table td,
.order-items-table td,
.ch-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.85rem;
    color: #374151;
}

.invoice-items-table tbody tr:hover,
.order-items-table tbody tr:hover,
.ch-table tbody tr:hover {
    background-color: #F9FAFB;
}

.invoice-items-table tfoot,
.order-items-table tfoot,
.ch-table tfoot {
    background-color: #F9FAFB;
}

.invoice-items-table .text-end,
.order-items-table .text-end,
.ch-table .text-end {
    text-align: right;
}

.tfoot-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.88rem;
}

.tfoot-value,
.tfoot-borc {
    font-weight: 700;
    color: #B91C1C;
    font-size: 0.92rem;
}

.tfoot-alacak {
    font-weight: 700;
    color: #065F46;
    font-size: 0.92rem;
}

.tfoot-bakiye {
    font-weight: 700;
    color: #111827;
    font-size: 0.92rem;
}

/* Grup badge */
.group-badge {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Fatura/Belge linki */
.invoice-link,
.belge-link {
    color: #B91C1C;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
}

.invoice-link:hover,
.belge-link:hover {
    text-decoration: underline;
}

/* Tutar renkleri (Cari Hareketler) */
.amount-borc {
    color: #B91C1C;
    font-weight: 600;
}

.amount-alacak {
    color: #065F46;
    font-weight: 600;
}

.amount-bakiye {
    color: #111827;
}

/* Yardımcı */
.text-muted-sm {
    font-size: 0.82rem;
    color: #9CA3AF;
}

.account-header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* =============================================
   Cari Durum Banner (Account/Info üstü)
   ============================================= */

.cari-durum-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.cari-durum-borc {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    border-color: #FECACA;
}

.cari-durum-alacak {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border-color: #6EE7B7;
}

.cari-durum-sifir {
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    border-color: #E5E7EB;
}

.cari-durum-banner-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.cari-durum-borc .cari-durum-banner-info i {
    font-size: 1.2rem;
    color: #B91C1C;
}

.cari-durum-alacak .cari-durum-banner-info i {
    font-size: 1.2rem;
    color: #059669;
}

.cari-durum-sifir .cari-durum-banner-info i {
    font-size: 1.2rem;
    color: #6B7280;
}

.cari-durum-banner-label {
    color: #6B7280;
}

.cari-durum-banner-values {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cari-durum-banner-amount {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cari-durum-borc .cari-durum-banner-amount {
    color: #B91C1C;
}

.cari-durum-alacak .cari-durum-banner-amount {
    color: #065F46;
}

.cari-durum-sifir .cari-durum-banner-amount {
    color: #374151;
}

.cari-durum-banner-items {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cari-durum-mini-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cari-durum-mini-label {
    font-size: 0.72rem;
    color: #9CA3AF;
    font-weight: 500;
}

.cari-durum-mini-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
}

.cari-durum-mini-val.borc {
    color: #B91C1C;
}

.cari-durum-mini-val.alacak {
    color: #065F46;
}

.cari-durum-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #B91C1C;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    border: 1px solid #FECACA;
    border-radius: 6px;
    background: rgba(255,255,255,0.6);
    transition: background 0.2s;
}

.cari-durum-banner-link:hover {
    background: rgba(255,255,255,0.9);
    color: #991B1B;
}

@media (max-width: 576px) {
    .cari-durum-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cari-durum-banner-values {
        width: 100%;
        justify-content: space-between;
    }
}

/* Boş durum */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    color: #E5E7EB;
    margin-bottom: 1rem;
}

.empty-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.empty-description {
    color: #6B7280;
    max-width: 400px;
    margin: 0 auto;
}

/* =============================================
   Netsis Detay Modal
   ============================================= */

.netsis-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.netsis-modal-dialog {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 4rem);
    overflow: hidden;
}

/* Sipariş detay modalını daha geniş göster */
.netsis-modal-dialog-order {
    max-width: 1200px;
}

.netsis-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.netsis-modal-title {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
}

.netsis-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6B7280;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.netsis-modal-close:hover {
    background: #F3F4F6;
    color: #111827;
}

.netsis-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.netsis-modal-loading {
    text-align: center;
    padding: 3rem;
    color: #6B7280;
    font-size: 0.9rem;
}

/* Modal içindeki account-header geri butonunu gizle */
.netsis-modal-body .account-header-actions {
    display: none;
}

/* Modal içindeki mt-3 yardımcısı */
.netsis-modal-body .mt-3 {
    margin-top: 1.25rem;
}

/* =============================================
   Hesabım Mobil Menü Toggle
   ============================================= */

.account-mobile-nav {
    display: none;
    margin-bottom: 1rem;
}

.account-mobile-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.125rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.account-mobile-toggle:hover {
    border-color: #B91C1C;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.08);
}

.account-mobile-toggle-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.account-mobile-toggle-left .fa-user-circle {
    font-size: 1.2rem;
    color: #B91C1C;
}

.account-mobile-toggle-arrow {
    font-size: 0.8rem;
    color: #6B7280;
    transition: transform 0.25s ease;
}

.account-mobile-toggle-arrow.rotated {
    transform: rotate(180deg);
}

.account-mobile-drawer {
    display: none;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-height: 70vh;
    overflow-y: auto;
}

.account-mobile-drawer.open {
    display: block;
    animation: slideDown 0.22s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Drawer içindeki user bilgisini gizle (toggle üzerinde zaten var) */
.account-mobile-drawer .account-user {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .account-layout {
        grid-template-columns: 240px 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .account-mobile-nav {
        display: block;
    }

    .account-layout {
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .account-layout .account-sidebar {
        display: none !important;
    }

    .account-sidebar {
        position: static;
    }

    .account-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-actions {
        align-self: flex-end;
    }

    /* Netsis filtre formu mobil */
    .netsis-filter-form .row {
        flex-direction: column;
    }

    .netsis-filter-form .col-auto {
        width: 100%;
    }

    .netsis-filter-form .form-control {
        width: 100%;
    }

    .netsis-filter-form button[type="submit"] {
        width: 100%;
        justify-content: center;
    }

    /* Fatura kartı mobil */
    .invoice-card-header,
    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .invoice-card-actions,
    .order-card-actions {
        width: 100%;
    }

    .invoice-action-btn,
    .order-action-btn {
        flex: 1;
        justify-content: center;
    }

    /* Detay kart mobil */
    .invoice-detail-card,
    .order-detail-card,
    .ch-detail-card {
        padding: 1rem;
    }

    /* Modal tam ekran mobil */
    .netsis-modal {
        padding: 0;
        align-items: flex-end;
    }

    .netsis-modal-dialog {
        border-radius: 16px 16px 0 0;
        max-height: 92vh;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .account-title {
        font-size: 1rem;
    }

    .invoice-totals-summary,
    .order-totals-summary {
        justify-content: flex-start;
        gap: 1rem;
    }

    /* Toplam özet mobil - yatay kaydırma yerine dolu genişlik */
    .total-summary-item {
        align-items: flex-start;
    }

    /* Cari Hareketler tablosu: kart görünümüne çevir */
    .ch-detail-card .table-responsive {
        overflow: visible;
    }

    .ch-table thead {
        display: none;
    }

    .ch-table,
    .ch-table tbody,
    .ch-table tr,
    .ch-table td {
        display: block;
        width: 100%;
    }

    .ch-table tbody tr {
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
        background: #fff;
    }

    .ch-table tbody tr:hover {
        background: #F9FAFB;
    }

    .ch-table td {
        padding: 0.3rem 0;
        border-bottom: none;
        font-size: 0.83rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ch-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6B7280;
        font-size: 0.75rem;
        flex-shrink: 0;
        margin-right: 0.5rem;
    }

    .ch-table td.text-end {
        text-align: right;
    }

    .ch-table tfoot {
        display: block;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        padding: 0.75rem;
        background: #F9FAFB;
    }

    .ch-table tfoot tr {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ch-table tfoot td {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        border-bottom: none;
        padding: 0.25rem 0.5rem;
        font-size: 0.83rem;
    }

    /* Fatura kalemleri tablosu: kart görünümüne çevir */
    .invoice-items-table thead,
    .order-items-table thead {
        display: none;
    }

    .invoice-items-table,
    .invoice-items-table tbody,
    .invoice-items-table tr,
    .invoice-items-table td,
    .order-items-table,
    .order-items-table tbody,
    .order-items-table tr,
    .order-items-table td {
        display: block;
        width: 100%;
    }

    .invoice-items-table tbody tr,
    .order-items-table tbody tr {
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
        background: #fff;
    }

    .invoice-items-table tbody tr:hover,
    .order-items-table tbody tr:hover {
        background: #F9FAFB;
    }

    .invoice-items-table td,
    .order-items-table td {
        padding: 0.3rem 0;
        border-bottom: none;
        font-size: 0.83rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .invoice-items-table td::before,
    .order-items-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6B7280;
        font-size: 0.75rem;
        flex-shrink: 0;
        margin-right: 0.5rem;
    }

    .invoice-items-table td.text-end,
    .order-items-table td.text-end {
        text-align: right;
    }

    /* Fatura header info mobil */
    .invoice-header-info,
    .order-header-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
