/* _content/HirdavatPOS.Web/Pages/Customers/Details.razor.rz.scp.css */
.customer-details-container[b-zoy866aams] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px); /* Sayfa yüksekliğinden navbar ve diğer elementleri çıkar */
    min-height: 500px;
    max-height: calc(100vh - 180px);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.customer-details-container > .card[b-zoy866aams] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.customer-details-container > .card:first-child[b-zoy866aams] {
    flex: 0 0 auto; /* Kişi bilgileri sabit yükseklikte */
    margin-bottom: 1rem;
}

.customer-details-container > .card:last-child[b-zoy866aams] {
    flex: 1; /* Hareketler kalan alanı kaplar */
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.customer-details-container .card-header[b-zoy866aams] {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
}

.customer-details-container .card-header h5[b-zoy866aams] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.customer-details-container .card-body[b-zoy866aams] {
    padding: 1rem;
}

.customer-details-container .card-body:first-child[b-zoy866aams] {
    flex: 0 0 auto;
}

.transactions-container[b-zoy866aams] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    padding: 1rem !important;
}

.transactions-container .table-responsive[b-zoy866aams] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    max-height: 100%;
    /* Scrollbar sadece gerektiğinde görünür */
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.transactions-container .table[b-zoy866aams] {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.transactions-container .table thead th[b-zoy866aams] {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 10;
    padding: 0.75rem;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.transactions-container .table tbody td[b-zoy866aams] {
    padding: 0.75rem;
    vertical-align: middle;
}

.transactions-container .table tbody tr:hover[b-zoy866aams] {
    background-color: #f8f9fa;
}

/* Kişi bilgileri kartı için özel stiller */
.customer-details-container .card:first-child .card-body p[b-zoy866aams] {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.customer-details-container .card:first-child .card-body p:last-of-type[b-zoy866aams] {
    margin-bottom: 0;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .customer-details-container[b-zoy866aams] {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .customer-details-container .card-body .row > div[b-zoy866aams] {
        margin-bottom: 0.5rem;
    }
    
    .transactions-container[b-zoy866aams] {
        max-height: 400px;
    }
}

/* Scrollbar stilleri (gerekirse görünür olması için) */
.transactions-container .table-responsive[b-zoy866aams]::-webkit-scrollbar {
    width: 8px;
}

.transactions-container .table-responsive[b-zoy866aams]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.transactions-container .table-responsive[b-zoy866aams]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.transactions-container .table-responsive[b-zoy866aams]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* _content/HirdavatPOS.Web/Pages/Dashboard.razor.rz.scp.css */
/* Dashboard Grid Layout (Desktop) */
.dashboard-grid[b-k0yfqx0zt2] {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    height: calc(100vh - 80px);
    /* Adjust based on navbar height */
    overflow-y: auto;
    padding: 10px;
}

/* 1. Top Section - KPI Cards */
.kpi-section[b-k0yfqx0zt2] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.kpi-card[b-k0yfqx0zt2] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.kpi-card:hover[b-k0yfqx0zt2] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.15);
}

.kpi-content h6[b-k0yfqx0zt2] {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-content h3[b-k0yfqx0zt2] {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.kpi-icon[b-k0yfqx0zt2] {
    font-size: 2.5rem;
    color: rgba(111, 66, 193, 0.1);
    /* Faded purple */
    position: absolute;
    right: 15px;
    bottom: -5px;
}

/* Specific KPI Colors */
.kpi-card.revenue h3[b-k0yfqx0zt2] {
    color: #28a745;
}

.kpi-card.critical[b-k0yfqx0zt2] {
    border-left: 4px solid #dc3545;
    background: #fff5f5;
}

.kpi-card.critical h3[b-k0yfqx0zt2] {
    color: #dc3545;
}

/* 2. Middle Section - Charts */
/* 2. Middle Section - Charts */
.charts-section[b-k0yfqx0zt2] {
    display: grid;
    grid-template-columns: minmax(0, 65%) minmax(0, 35%);
    /* Strict constraint using minmax */
    gap: 20px;
    min-height: 350px;
}

.chart-container[b-k0yfqx0zt2] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
    /* Critical fix for Grid/Flex overflow */
}

.section-header[b-k0yfqx0zt2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h5[b-k0yfqx0zt2] {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.data-freshness[b-k0yfqx0zt2] {
    font-size: 0.75rem;
    color: #adb5bd;
    font-style: italic;
}

.chart-wrapper[b-k0yfqx0zt2] {
    flex: 1;
    position: relative;
    min-height: 0;
    width: 100%;
    /* Ensure it doesn't grow beyond container */
    overflow: hidden;
    /* Prevent canvas from pushing boundaries */
}

/* 3. Bottom Section - Tables */
.tables-section[b-k0yfqx0zt2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 350px;
}

.table-panel[b-k0yfqx0zt2] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.table-wrapper[b-k0yfqx0zt2] {
    flex: 1;
    overflow-y: auto;
}

.dashboard-table[b-k0yfqx0zt2] {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th[b-k0yfqx0zt2] {
    position: sticky;
    top: 0;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
    border-bottom: 2px solid #e9ecef;
}

.dashboard-table td[b-k0yfqx0zt2] {
    padding: 12px 10px;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f3f5;
    color: #495057;
}

.dashboard-table tr:hover[b-k0yfqx0zt2] {
    background-color: #f8f9fa;
}

/* Action Button */
.header-actions[b-k0yfqx0zt2] {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 100;
}

.btn-new-sale[b-k0yfqx0zt2] {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
    text-decoration: none;
}

.btn-new-sale:hover[b-k0yfqx0zt2] {
    background: #5a32a3;
    transform: translateY(-1px);
    color: white;
}

/* ===== SKELETON LOADING STATE ===== */
.skeleton[b-k0yfqx0zt2] {
    background: #f1f3f5;
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    background-size: 200% 100%;
    animation: shimmer-b-k0yfqx0zt2 2s infinite linear;
    border-radius: 4px;
}

@keyframes shimmer-b-k0yfqx0zt2 {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-text[b-k0yfqx0zt2] {
    height: 1rem;
    margin-bottom: 0.5rem;
    width: 60%;
}

.skeleton-text.large[b-k0yfqx0zt2] {
    height: 2rem;
    width: 80%;
}

.skeleton-block[b-k0yfqx0zt2] {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .dashboard-grid[b-k0yfqx0zt2] {
        grid-template-rows: auto;
        height: auto;
    }

    .kpi-section[b-k0yfqx0zt2] {
        grid-template-columns: repeat(3, 1fr);
    }

    .charts-section[b-k0yfqx0zt2] {
        grid-template-columns: 1fr;
    }

    .tables-section[b-k0yfqx0zt2] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kpi-section[b-k0yfqx0zt2] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .kpi-section[b-k0yfqx0zt2] {
        grid-template-columns: 1fr;
    }
}
/* _content/HirdavatPOS.Web/Pages/Orders/Create.razor.rz.scp.css */
/* Kart ve Genel stil */
.product-card[b-k39an1lmdv] {
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.product-card:hover[b-k39an1lmdv] {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08) !important;
    border-color: var(--bs-primary);
}

/* Sağ Panel: Sepet */
.order-summary-card[b-k39an1lmdv] {
    position: sticky;
    top: 1rem;
    height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 2rem);
}

.order-items-container[b-k39an1lmdv] {
    overflow-y: auto;
    flex-grow: 1;
    border-bottom: 1px solid #e9ecef;
}

/* Küçük ekranlarda (Mobile) Sepet yüksekliği */
@media (max-width: 768px) {
    .order-summary-card[b-k39an1lmdv] {
        position: static;
        height: auto;
        max-height: 60vh;
    }
}

.quantity-control[b-k39an1lmdv] {
    width: 120px;
}

.search-box .form-control[b-k39an1lmdv] {
    border-radius: 50px;
    padding-left: 2.5rem;
}

.search-box i[b-k39an1lmdv] {
    left: 1rem;
    z-index: 10;
    color: #adb5bd;
}

/* Sol Panel: Ürün Kataloğu */
.product-catalogue-container[b-k39an1lmdv] {
    padding-right: 0.5rem;
    /* Varsayılan olarak sayfa akışında kalsın, scroll gerekirse eklensin */
}

/* Scrollbar styling */
.order-items-container[b-k39an1lmdv]::-webkit-scrollbar,
.product-catalogue-container[b-k39an1lmdv]::-webkit-scrollbar {
    width: 6px;
}

.order-items-container[b-k39an1lmdv]::-webkit-scrollbar-track,
.product-catalogue-container[b-k39an1lmdv]::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.order-items-container[b-k39an1lmdv]::-webkit-scrollbar-thumb,
.product-catalogue-container[b-k39an1lmdv]::-webkit-scrollbar-thumb {
    background-color: #adb5bd;
    border-radius: 10px;
}
/* _content/HirdavatPOS.Web/Pages/Orders/Details.razor.rz.scp.css */
.order-details-container[b-sdtjb2d8er] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
    min-height: 500px;
    max-height: calc(100vh - 180px);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.order-details-container > .card[b-sdtjb2d8er] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.order-details-container > .card:first-child[b-sdtjb2d8er] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.order-details-container > .card:last-child[b-sdtjb2d8er] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.order-details-container .card-header[b-sdtjb2d8er] {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
}

.order-details-container .card-header h5[b-sdtjb2d8er] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.order-details-container .card-body[b-sdtjb2d8er] {
    padding: 1rem;
}

.order-details-container .card-body:first-child[b-sdtjb2d8er] {
    flex: 0 0 auto;
}

.order-items-container[b-sdtjb2d8er] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    padding: 1rem !important;
}

.details-table-container[b-sdtjb2d8er] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.details-table-container[b-sdtjb2d8er]::-webkit-scrollbar {
    width: 8px;
}

.details-table-container[b-sdtjb2d8er]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.details-table-container[b-sdtjb2d8er]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.details-table-container[b-sdtjb2d8er]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.order-items-container .table-responsive[b-sdtjb2d8er] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    max-height: 100%;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.order-items-container .table[b-sdtjb2d8er] {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.order-items-container .table thead[b-sdtjb2d8er] {
    display: table-header-group !important;
    visibility: visible !important;
}

.order-items-container .table thead th[b-sdtjb2d8er] {
    position: sticky;
    top: 0;
    background-color: #f8f9fa !important;
    z-index: 10;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid #dee2e6;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1);
    color: #212529;
}

.order-items-container .table thead th.text-center[b-sdtjb2d8er] {
    text-align: center;
}

.order-items-container .table thead th.text-end[b-sdtjb2d8er] {
    text-align: right;
}

.order-items-container .table tbody td[b-sdtjb2d8er] {
    padding: 0.75rem;
    vertical-align: middle;
}

.order-items-container .table tbody tr:hover[b-sdtjb2d8er] {
    background-color: #f8f9fa;
}

.order-items-container .table tfoot[b-sdtjb2d8er] {
    position: sticky;
    bottom: 0;
    background-color: #e9ecef;
    z-index: 10;
}

.order-items-container .table tfoot td[b-sdtjb2d8er] {
    padding: 0.75rem;
    font-weight: 600;
    border-top: 2px solid #dee2e6;
}

.order-details-container .card:first-child .card-body p[b-sdtjb2d8er] {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.order-details-container .card:first-child .card-body p:last-of-type[b-sdtjb2d8er] {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .order-details-container[b-sdtjb2d8er] {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .order-details-container .card-body .row > div[b-sdtjb2d8er] {
        margin-bottom: 0.5rem;
    }
    
    .order-items-container[b-sdtjb2d8er] {
        max-height: 400px;
    }
}

.order-items-container .table-responsive[b-sdtjb2d8er]::-webkit-scrollbar {
    width: 8px;
}

.order-items-container .table-responsive[b-sdtjb2d8er]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.order-items-container .table-responsive[b-sdtjb2d8er]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.order-items-container .table-responsive[b-sdtjb2d8er]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* _content/HirdavatPOS.Web/Pages/Orders/Print.razor.rz.scp.css */
.print-container[b-3oz3qadejk] {
    max-width: 210mm;
    margin: 0 auto;
    padding: 20mm;
    background: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.print-header[b-3oz3qadejk] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.company-info[b-3oz3qadejk] {
    flex: 1;
}

.company-name[b-3oz3qadejk] {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 0 0 10px 0;
}

.company-address[b-3oz3qadejk] {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.document-info[b-3oz3qadejk] {
    text-align: right;
}

.document-title[b-3oz3qadejk] {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.document-number[b-3oz3qadejk] {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.print-body[b-3oz3qadejk] {
    margin-top: 20px;
}

.order-info-section[b-3oz3qadejk] {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.info-row[b-3oz3qadejk] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-row:last-child[b-3oz3qadejk] {
    margin-bottom: 0;
}

.info-item[b-3oz3qadejk] {
    flex: 1;
    font-size: 14px;
}

.items-section[b-3oz3qadejk] {
    margin-bottom: 25px;
}

.items-section h4[b-3oz3qadejk] {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.print-table[b-3oz3qadejk] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.print-table thead[b-3oz3qadejk] {
    background: #667eea;
    color: white;
}

.print-table th[b-3oz3qadejk] {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #ddd;
}

.print-table td[b-3oz3qadejk] {
    padding: 10px 8px;
    border: 1px solid #ddd;
    font-size: 13px;
}

.print-table tbody tr:nth-child(even)[b-3oz3qadejk] {
    background: #f8f9fa;
}

.print-table tfoot[b-3oz3qadejk] {
    background: #e9ecef;
}

.total-row td[b-3oz3qadejk] {
    font-size: 16px;
    font-weight: 700;
    padding: 15px 8px;
}

.notes-section[b-3oz3qadejk] {
    margin-bottom: 25px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.notes-section h4[b-3oz3qadejk] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.notes-section p[b-3oz3qadejk] {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.print-footer[b-3oz3qadejk] {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    text-align: center;
}

.footer-text[b-3oz3qadejk] {
    font-size: 11px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.print-actions[b-3oz3qadejk] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.print-actions .btn[b-3oz3qadejk] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-center[b-3oz3qadejk] {
    text-align: center;
}

.text-end[b-3oz3qadejk] {
    text-align: right;
}

@media print {
    .no-print[b-3oz3qadejk] {
        display: none !important;
    }

    .print-container[b-3oz3qadejk] {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    body[b-3oz3qadejk] {
        margin: 0;
        padding: 0;
    }
}

@page {
    size: A4;
    margin: 15mm;
}

/* Print sayfası için body scroll desteği */
body[b-3oz3qadejk] {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* _content/HirdavatPOS.Web/Pages/Products/Details.razor.rz.scp.css */
.product-details-container[b-dfo55qmyec] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
    min-height: 400px;
    max-height: calc(100vh - 180px);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.product-details-container > .card[b-dfo55qmyec] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    flex: 1;
}

.product-details-container .card-header[b-dfo55qmyec] {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
}

.product-details-container .card-header h5[b-dfo55qmyec] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-details-container .card-body[b-dfo55qmyec] {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details-container .card-body p[b-dfo55qmyec] {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.product-details-container .card-body p:last-of-type[b-dfo55qmyec] {
    margin-bottom: 0;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .product-details-container[b-dfo55qmyec] {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .product-details-container .card-body .row > div[b-dfo55qmyec] {
        margin-bottom: 0.5rem;
    }
}

/* _content/HirdavatPOS.Web/Pages/ReportsPrint.razor.rz.scp.css */
.print-container[b-x64l0sttzi] {
    max-width: 210mm;
    margin: 0 auto;
    padding: 20mm;
    background: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Ekranda görüntüleme için scrollbar aktif */
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    /* Scrollbar stilleri */
    scrollbar-width: thin;
    scrollbar-color: #667eea #f8f9fa;
}

/* Webkit tarayıcılar için scrollbar stilleri */
.print-container[b-x64l0sttzi]::-webkit-scrollbar {
    width: 10px;
}

.print-container[b-x64l0sttzi]::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 5px;
}

.print-container[b-x64l0sttzi]::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 5px;
}

.print-container[b-x64l0sttzi]::-webkit-scrollbar-thumb:hover {
    background: #5568d3;
}

.print-header[b-x64l0sttzi] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.company-info[b-x64l0sttzi] {
    flex: 1;
}

.company-name[b-x64l0sttzi] {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 0 0 10px 0;
}

.company-address[b-x64l0sttzi] {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.document-info[b-x64l0sttzi] {
    text-align: right;
}

.document-title[b-x64l0sttzi] {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.document-number[b-x64l0sttzi] {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.print-body[b-x64l0sttzi] {
    margin-top: 20px;
}

.items-section[b-x64l0sttzi] {
    margin-bottom: 30px;
    /* PDF için sayfa sonu kontrolü - tablolar bölünebilir */
    page-break-inside: auto;
    page-break-after: auto;
}

.items-section h4[b-x64l0sttzi] {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.print-table[b-x64l0sttzi] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    /* Tablolar sayfa sonunda bölünebilir */
    page-break-inside: auto;
    /* Tablo başlıkları her sayfada tekrarlanır */
}

.print-table thead[b-x64l0sttzi] {
    display: table-header-group;
}

.print-table tfoot[b-x64l0sttzi] {
    display: table-footer-group;
}

.print-table tbody tr[b-x64l0sttzi] {
    /* Satırlar sayfa sonunda bölünebilir (uzun tablolar için) */
    page-break-inside: auto;
    page-break-after: auto;
}

.print-table thead[b-x64l0sttzi] {
    background: #667eea;
    color: white;
}

.print-table th[b-x64l0sttzi] {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #ddd;
}

.print-table td[b-x64l0sttzi] {
    padding: 10px 8px;
    border: 1px solid #ddd;
    font-size: 13px;
}

.print-table tbody tr:nth-child(even)[b-x64l0sttzi] {
    background: #f8f9fa;
}

.print-table tfoot[b-x64l0sttzi] {
    background: #e9ecef;
}

.total-row td[b-x64l0sttzi] {
    font-size: 16px;
    font-weight: 700;
    padding: 15px 8px;
}

.summary-section[b-x64l0sttzi] {
    margin-top: 30px;
    margin-bottom: 25px;
}

.summary-section .print-table[b-x64l0sttzi] {
    margin-bottom: 0;
}

.print-footer[b-x64l0sttzi] {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    text-align: center;
}

.footer-text[b-x64l0sttzi] {
    font-size: 11px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.print-actions[b-x64l0sttzi] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.print-actions .btn[b-x64l0sttzi] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-center[b-x64l0sttzi] {
    text-align: center;
}

.text-end[b-x64l0sttzi] {
    text-align: right;
}

@media print {
    /* Print media'da tüm overflow ve height kısıtlamaları kaldırıldı */
    .no-print[b-x64l0sttzi] {
        display: none !important;
    }

    /* Print için renk ayarları - arka plan renkleri yazdırılsın */
    *[b-x64l0sttzi] {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .print-container[b-x64l0sttzi] {
        margin: 0 !important;
        /* Padding'i kaldırıyoruz çünkü @page zaten 15mm margin veriyor */
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
        overflow-y: visible !important;
        overflow-x: visible !important;
        max-height: none !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        background: white !important;
        border: none !important; /* Varsa borderları da kaldır */
        page-break-inside: auto !important;
    }

    .print-body[b-x64l0sttzi] {
        margin-top: 0 !important;
        page-break-inside: auto !important;
    }

    body[b-x64l0sttzi] {
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        overflow-y: visible !important;
        overflow-x: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        position: relative !important;
        background: white !important;
    }

    html[b-x64l0sttzi] {
        overflow: visible !important;
        height: auto !important;
        background: white !important;
    }

    .items-section[b-x64l0sttzi] {
        /* Bölümler sayfa sonunda bölünebilir */
        page-break-inside: auto !important;
        page-break-after: auto !important;
        page-break-before: auto !important;
        margin-bottom: 20px !important;
        margin-top: 0 !important;
        padding: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-table[b-x64l0sttzi] {
        /* Tablolar sayfa sonunda bölünebilir */
        page-break-inside: auto !important;
        page-break-before: auto !important;
        page-break-after: auto !important;
        width: 100% !important;
        display: table !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-table thead[b-x64l0sttzi] {
        /* Başlık her sayfada tekrarlanır */
        display: table-header-group !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-table tfoot[b-x64l0sttzi] {
        /* Alt toplam her sayfada tekrarlanır */
        display: table-footer-group !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-table tbody[b-x64l0sttzi] {
        display: table-row-group !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-table tbody tr[b-x64l0sttzi] {
        /* Satırlar sayfa sonunda bölünebilir */
        page-break-inside: auto !important;
        page-break-after: auto !important;
        display: table-row !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-table tbody td[b-x64l0sttzi] {
        /* Hücreler sayfa sonunda bölünebilir */
        page-break-inside: auto !important;
        display: table-cell !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-table th[b-x64l0sttzi] {
        display: table-cell !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Bölümler arası sayfa sonu kontrolü */
    .items-section:first-of-type[b-x64l0sttzi] {
        page-break-before: auto !important;
    }

    .summary-section[b-x64l0sttzi] {
        page-break-inside: avoid !important;
        page-break-before: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-header[b-x64l0sttzi] {
        page-break-after: avoid !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .print-footer[b-x64l0sttzi] {
        page-break-before: avoid !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@page {
    size: A4;
    margin: 15mm;
}

/* Ekranda görüntüleme için scrollbar aktif - sadece screen için */
@media screen {
    body[b-x64l0sttzi] {
        position: relative;
        /* Ekranda görüntüleme için scrollbar aktif */
        overflow-y: auto;
        overflow-x: hidden;
        height: 100vh;
    }
}

/* _content/HirdavatPOS.Web/Pages/Sales/Details.razor.rz.scp.css */
.sale-details-container[b-el812oymo3] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px); /* Sayfa yüksekliğinden navbar ve diğer elementleri çıkar */
    min-height: 500px;
    max-height: calc(100vh - 180px);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.sale-details-container > .card[b-el812oymo3] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.sale-details-container > .card:first-child[b-el812oymo3] {
    flex: 0 0 auto; /* Satış bilgileri sabit yükseklikte */
    margin-bottom: 1rem;
}

.sale-details-container > .card:last-child[b-el812oymo3] {
    flex: 1; /* Satış kalemleri kalan alanı kaplar */
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.sale-details-container .card-header[b-el812oymo3] {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
}

.sale-details-container .card-header h5[b-el812oymo3] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.sale-details-container .card-body[b-el812oymo3] {
    padding: 1rem;
}

.sale-details-container .card-body:first-child[b-el812oymo3] {
    flex: 0 0 auto;
}

.sale-items-container[b-el812oymo3] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    padding: 1rem !important;
}

.sale-items-container .table-responsive[b-el812oymo3] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    max-height: 100%;
    /* Scrollbar sadece gerektiğinde görünür */
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.sale-items-container .table[b-el812oymo3] {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.sale-items-container .table thead[b-el812oymo3] {
    display: table-header-group !important;
    visibility: visible !important;
}

.sale-items-container .table thead th[b-el812oymo3] {
    position: sticky;
    top: 0;
    background-color: #f8f9fa !important;
    z-index: 10;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid #dee2e6;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1);
    color: #212529;
}

.sale-items-container .table thead th.text-center[b-el812oymo3] {
    text-align: center;
}

.sale-items-container .table thead th.text-end[b-el812oymo3] {
    text-align: right;
}

.sale-items-container .table tbody td[b-el812oymo3] {
    padding: 0.75rem;
    vertical-align: middle;
}

.sale-items-container .table tbody tr:hover[b-el812oymo3] {
    background-color: #f8f9fa;
}

.sale-items-container .table tfoot[b-el812oymo3] {
    position: sticky;
    bottom: 0;
    background-color: #e9ecef;
    z-index: 10;
}

.sale-items-container .table tfoot td[b-el812oymo3] {
    padding: 0.75rem;
    font-weight: 600;
    border-top: 2px solid #dee2e6;
}

/* Satış bilgileri kartı için özel stiller */
.sale-details-container .card:first-child .card-body p[b-el812oymo3] {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.sale-details-container .card:first-child .card-body p:last-of-type[b-el812oymo3] {
    margin-bottom: 0;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .sale-details-container[b-el812oymo3] {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .sale-details-container .card-body .row > div[b-el812oymo3] {
        margin-bottom: 0.5rem;
    }
    
    .sale-items-container[b-el812oymo3] {
        max-height: 400px;
    }
}

/* Scrollbar stilleri */
.sale-items-container .table-responsive[b-el812oymo3]::-webkit-scrollbar {
    width: 8px;
}

.sale-items-container .table-responsive[b-el812oymo3]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sale-items-container .table-responsive[b-el812oymo3]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.sale-items-container .table-responsive[b-el812oymo3]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* İade butonu için stil */
.sale-items-container .btn-sm[b-el812oymo3] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* _content/HirdavatPOS.Web/Pages/Sales/QuickSale.razor.rz.scp.css */
/* =========================================
   PROFESSIONAL POS - QUICK SALE
   High-efficiency, keyboard-first design
   Color: White + Purple (#6f42c1)
   Note: Font import should be in global CSS
   ========================================= */

/* ===== MAIN CONTAINER ===== */
.pos-container[b-vc1bmuqnkf] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    background: #f5f6fa;
    padding: 0;
    overflow: hidden;
    outline: none;
}

/* ===== GLOBAL SEARCH BAR ===== */
.global-search-bar[b-vc1bmuqnkf] {
    background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3);
    flex-shrink: 0;
}

.search-input-wrapper[b-vc1bmuqnkf] {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 0 12px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.search-input-wrapper:focus-within[b-vc1bmuqnkf] {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
}

.search-icon[b-vc1bmuqnkf] {
    color: #6f42c1;
    font-size: 1.25rem;
    margin-right: 10px;
}

.global-search-input[b-vc1bmuqnkf] {
    flex: 1;
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    outline: none;
}

.global-search-input[b-vc1bmuqnkf]::placeholder {
    color: #9ca3af;
}

.search-clear-btn[b-vc1bmuqnkf],
.search-camera-btn[b-vc1bmuqnkf] {
    background: none;
    border: none;
    color: #6c757d;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.search-clear-btn:hover[b-vc1bmuqnkf],
.search-camera-btn:hover[b-vc1bmuqnkf] {
    background: #f3f4f6;
    color: #374151;
}

/* Last Added Toast */
.last-added-toast[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    animation: slideIn-b-vc1bmuqnkf 0.3s ease;
}

.last-added-toast i[b-vc1bmuqnkf] {
    color: #10b981;
}

.toast-price[b-vc1bmuqnkf] {
    font-weight: 700;
    color: #6f42c1;
    margin-left: auto;
}

.toast-close[b-vc1bmuqnkf] {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 4px;
}

@keyframes slideIn-b-vc1bmuqnkf {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== ALERTS ===== */
.pos-alert[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin: 8px 16px 0;
    border-radius: 8px;
    font-size: 0.875rem;
}

.pos-alert button[b-vc1bmuqnkf] {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
}

.pos-alert-error[b-vc1bmuqnkf] {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.pos-alert-success[b-vc1bmuqnkf] {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* ===== MAIN LAYOUT ===== */
.pos-main-layout[b-vc1bmuqnkf] {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    gap: 0;
}

/* ===== LEFT PANEL: PRODUCTS (65%) ===== */
.pos-products-panel[b-vc1bmuqnkf] {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    background: white;
    border-right: 1px solid #e5e7eb;
    min-height: 0;
}

.panel-header[b-vc1bmuqnkf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    flex-shrink: 0;
}

/* Products Header Styles (Purple) */
.products-header[b-vc1bmuqnkf] {
    background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
}

.products-header .panel-title[b-vc1bmuqnkf] {
    color: white;
}

.products-header .panel-title i[b-vc1bmuqnkf] {
    color: white;
}

.products-header .product-count[b-vc1bmuqnkf] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.panel-title[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
}

.panel-title i[b-vc1bmuqnkf] {
    color: #6f42c1;
}

.product-count[b-vc1bmuqnkf] {
    font-size: 0.8rem;
    color: #6c757d;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Product List Container */
.product-list-container[b-vc1bmuqnkf] {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    min-height: 0;
}

/* Product Table Header Row */
.product-table-header[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    background: #f3f4f6;
    border-bottom: 2px solid #e5e7eb;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    position: sticky;
    top: 0;
    z-index: 1;
    gap: 12px;
    flex-shrink: 0;
}

.product-table-header .col-product[b-vc1bmuqnkf] {
    flex: 1;
    padding-left: 52px;
}

.product-table-header .col-stock[b-vc1bmuqnkf] {
    width: 60px;
    text-align: center;
}

.product-table-header .col-price[b-vc1bmuqnkf] {
    width: 80px;
    text-align: right;
}

.empty-products[b-vc1bmuqnkf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
    text-align: center;
}

.empty-products i[b-vc1bmuqnkf] {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-products p[b-vc1bmuqnkf] {
    font-weight: 600;
    margin-bottom: 4px;
}

/* Product List (High-Density Rows) */
.product-list[b-vc1bmuqnkf] {
    display: flex;
    flex-direction: column;
}

.product-row[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    padding: 5px 16px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.15s;
    gap: 12px;
}

.product-row:hover[b-vc1bmuqnkf] {
    background: #f8f5ff;
}

.product-row:active[b-vc1bmuqnkf] {
    background: #ede9fe;
}

.product-row.out-of-stock[b-vc1bmuqnkf] {
    opacity: 0.5;
    pointer-events: none;
}

.product-row.low-stock[b-vc1bmuqnkf] {
    border-left: 3px solid #f59e0b;
}

.product-thumb[b-vc1bmuqnkf] {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.product-details[b-vc1bmuqnkf] {
    flex: 1;
    min-width: 0;
}

.product-name[b-vc1bmuqnkf] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-code[b-vc1bmuqnkf] {
    font-size: 0.75rem;
    color: #9ca3af;
}

.product-stock[b-vc1bmuqnkf] {
    flex-shrink: 0;
}

.stock-badge[b-vc1bmuqnkf] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.stock-ok[b-vc1bmuqnkf] {
    background: #d1fae5;
    color: #065f46;
}

.stock-low[b-vc1bmuqnkf] {
    background: #fef3c7;
    color: #92400e;
}

.stock-out[b-vc1bmuqnkf] {
    background: #fee2e2;
    color: #991b1b;
}

.product-price[b-vc1bmuqnkf] {
    font-weight: 800;
    font-size: 1rem;
    color: #1f2937;
    flex-shrink: 0;
    min-width: 80px;
    text-align: right;
}

/* ===== RIGHT PANEL: CART (35%) ===== */
.pos-cart-panel[b-vc1bmuqnkf] {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    background: white;
    min-height: 0;
}

.cart-header[b-vc1bmuqnkf] {
    background: #6f42c1;
    color: white;
}

.cart-header .panel-title[b-vc1bmuqnkf] {
    color: white;
}

.cart-header .panel-title i[b-vc1bmuqnkf] {
    color: white;
}

.cart-header-actions[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count[b-vc1bmuqnkf] {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-clear-header[b-vc1bmuqnkf] {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.btn-clear-header:hover[b-vc1bmuqnkf] {
    background: rgba(255, 255, 255, 0.3);
}

.btn-clear-header:active[b-vc1bmuqnkf] {
    background: #dc2626;
}

/* ===== DISCOUNT COLUMN ===== */
.col-discount[b-vc1bmuqnkf] {
    width: 60px;
    text-align: center;
    position: relative;
}

.discount-cell[b-vc1bmuqnkf] {
    position: relative;
    display: flex;
    justify-content: center;
}

.btn-discount-trigger[b-vc1bmuqnkf] {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.7rem;
}

.btn-discount-trigger:hover[b-vc1bmuqnkf] {
    border-color: #6f42c1;
    color: #6f42c1;
}

.btn-discount-trigger.active[b-vc1bmuqnkf] {
    background: #6f42c1;
    border-color: #6f42c1;
    color: white;
}

.discount-badge[b-vc1bmuqnkf] {
    font-size: 0.6rem;
    font-weight: 600;
}

/* Discount Popover */
.discount-popover[b-vc1bmuqnkf] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 100;
    width: 180px;
    margin-top: 6px;
}

.popover-header[b-vc1bmuqnkf] {
    padding: 8px 12px;
    background: #f8f5ff;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6f42c1;
    border-radius: 8px 8px 0 0;
}

.popover-body[b-vc1bmuqnkf] {
    padding: 10px 12px;
}

.discount-type-toggle[b-vc1bmuqnkf] {
    display: flex;
    margin-bottom: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.discount-type-toggle button[b-vc1bmuqnkf] {
    flex: 1;
    padding: 6px 0;
    border: none;
    background: white;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s;
}

.discount-type-toggle button:hover[b-vc1bmuqnkf] {
    background: #f3f4f6;
}

.discount-type-toggle button.active[b-vc1bmuqnkf] {
    background: #6f42c1;
    color: white;
}

.discount-input[b-vc1bmuqnkf] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.discount-input:focus[b-vc1bmuqnkf] {
    outline: none;
    border-color: #6f42c1;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.popover-footer[b-vc1bmuqnkf] {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: #fafbfc;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 8px 8px;
}

.btn-popover-clear[b-vc1bmuqnkf] {
    flex: 1;
    padding: 6px 0;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6c757d;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-popover-clear:hover[b-vc1bmuqnkf] {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

.btn-popover-ok[b-vc1bmuqnkf] {
    flex: 1;
    padding: 6px 0;
    border: none;
    background: #6f42c1;
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-popover-ok:hover[b-vc1bmuqnkf] {
    background: #5b32a8;
}

/* Original Price Strikethrough */
.original-price[b-vc1bmuqnkf] {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.7rem;
    display: block;
}

.has-discount .col-price strong[b-vc1bmuqnkf] {
    color: #dc2626;
}

/* ===== GENERAL DISCOUNT ROW ===== */
.general-discount-row[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 !important;
}

.general-discount-row>span:first-child[b-vc1bmuqnkf] {
    flex-shrink: 0;
    font-size: 0.85rem;
}

.general-discount-input[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.segmented-toggle[b-vc1bmuqnkf] {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.segmented-toggle button[b-vc1bmuqnkf] {
    padding: 4px 8px;
    border: none;
    background: white;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.15s;
}

.segmented-toggle button:first-child[b-vc1bmuqnkf] {
    border-right: 1px solid #e5e7eb;
}

.segmented-toggle button:hover[b-vc1bmuqnkf] {
    background: #f3f4f6;
}

.segmented-toggle button.active[b-vc1bmuqnkf] {
    background: #6f42c1;
    color: white;
}

.discount-value-input[b-vc1bmuqnkf] {
    width: 60px;
    padding: 4px 6px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.8rem;
    text-align: center;
}

.discount-value-input:focus[b-vc1bmuqnkf] {
    outline: none;
    border-color: #6f42c1;
}

.discount-amount[b-vc1bmuqnkf] {
    color: #dc2626;
    font-weight: 600;
    text-align: right;
    flex-shrink: 0;
}

.item-discounts-row[b-vc1bmuqnkf] {
    color: #d97706;
}

.item-discounts-row .discount-amount[b-vc1bmuqnkf] {
    color: #d97706;
}

/* Cart Meta Section */
.cart-meta-section[b-vc1bmuqnkf] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
    background: #f8f5ff;
    border-bottom: 1px solid #e5e7eb;
}

.meta-tag[b-vc1bmuqnkf] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #e9d5ff;
}

.meta-tag i[b-vc1bmuqnkf] {
    color: #6f42c1;
    font-size: 0.75rem;
}

.meta-tag button[b-vc1bmuqnkf] {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-left: 4px;
}

.meta-tag button:hover[b-vc1bmuqnkf] {
    color: #ef4444;
}

/* Cart Items Container */
.cart-items-container[b-vc1bmuqnkf] {
    flex: 1;
    overflow-y: auto;
    background: #fafbfc;
}

.empty-cart[b-vc1bmuqnkf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
    text-align: center;
    padding: 40px 20px;
}

.empty-cart i[b-vc1bmuqnkf] {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.4;
}

.empty-cart p[b-vc1bmuqnkf] {
    font-weight: 600;
    margin-bottom: 4px;
}

/* Cart Table */
.cart-table[b-vc1bmuqnkf] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.cart-table thead[b-vc1bmuqnkf] {
    background: #f3f4f6;
    position: sticky;
    top: 0;
}

.cart-table th[b-vc1bmuqnkf] {
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.cart-table tbody tr[b-vc1bmuqnkf] {
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}

.cart-table tbody tr:hover[b-vc1bmuqnkf] {
    background: #f8f5ff;
}

.cart-table tbody tr.row-highlight[b-vc1bmuqnkf] {
    animation: rowPulse-b-vc1bmuqnkf 1s ease;
}

@keyframes rowPulse-b-vc1bmuqnkf {
    0% {
        background: #d1fae5;
    }

    100% {
        background: transparent;
    }
}

.cart-table td[b-vc1bmuqnkf] {
    padding: 10px 12px;
    vertical-align: middle;
}

.col-name[b-vc1bmuqnkf] {
    width: 45%;
}

.col-qty[b-vc1bmuqnkf] {
    width: 25%;
    text-align: center;
}

.col-price[b-vc1bmuqnkf] {
    width: 20%;
    text-align: right;
}

.col-action[b-vc1bmuqnkf] {
    width: 10%;
    text-align: center;
}

.item-name[b-vc1bmuqnkf] {
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.item-unit-price[b-vc1bmuqnkf] {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Quantity Stepper */
.qty-stepper[b-vc1bmuqnkf] {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.qty-stepper button[b-vc1bmuqnkf] {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 1rem;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.15s;
}

.qty-stepper button:hover[b-vc1bmuqnkf] {
    background: #f3f4f6;
    color: #1f2937;
}

.qty-stepper span[b-vc1bmuqnkf] {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.col-price strong[b-vc1bmuqnkf] {
    font-weight: 700;
    color: #1f2937;
}

.btn-remove[b-vc1bmuqnkf] {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.15s;
}

.btn-remove:hover[b-vc1bmuqnkf] {
    background: #fee2e2;
    color: #ef4444;
}

/* Cart Summary */
.cart-summary[b-vc1bmuqnkf] {
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.summary-row[b-vc1bmuqnkf] {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.9rem;
}

.discount-row[b-vc1bmuqnkf] {
    color: #dc2626;
}

.total-row[b-vc1bmuqnkf] {
    padding-top: 8px;
    margin-top: 8px;
    border-top: 2px solid #e5e7eb;
    font-size: 1.1rem;
    font-weight: 700;
}

.grand-total[b-vc1bmuqnkf] {
    color: #6f42c1;
    font-size: 1.5rem;
}

/* Payment Methods */
.payment-methods[b-vc1bmuqnkf] {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: #fafbfc;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.payment-btn[b-vc1bmuqnkf] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    font-size: 0.65rem;
    font-weight: 600;
}

.payment-btn i[b-vc1bmuqnkf] {
    font-size: 1rem;
}

.payment-btn[b-vc1bmuqnkf] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    font-size: 0.75rem;
    font-weight: 600;
}

.payment-btn i[b-vc1bmuqnkf] {
    font-size: 1.25rem;
}

.payment-btn .shortcut-badge[b-vc1bmuqnkf] {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.55rem;
    background: #f3f4f6;
    padding: 1px 3px;
    border-radius: 3px;
    color: #6c757d;
}

.payment-btn.active .shortcut-badge[b-vc1bmuqnkf] {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Payment Button Colors */
.payment-cash[b-vc1bmuqnkf] {
    color: #059669;
}

.payment-cash.active[b-vc1bmuqnkf] {
    background: #059669;
    border-color: #059669;
    color: white;
}

.payment-card[b-vc1bmuqnkf] {
    color: #2563eb;
}

.payment-card.active[b-vc1bmuqnkf] {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.payment-credit[b-vc1bmuqnkf] {
    color: #d97706;
}

.payment-credit.active[b-vc1bmuqnkf] {
    background: #d97706;
    border-color: #d97706;
    color: white;
}

/* Credit Warning */
.credit-warning[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.8rem;
}

.credit-warning i[b-vc1bmuqnkf] {
    flex-shrink: 0;
}

.btn-select-customer[b-vc1bmuqnkf] {
    margin-left: auto;
    background: #d97706;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

/* Cart Actions */
.cart-actions[b-vc1bmuqnkf] {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: white;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.btn-secondary-action[b-vc1bmuqnkf] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-secondary-action:hover[b-vc1bmuqnkf] {
    background: #e5e7eb;
    color: #374151;
}

.btn-complete-sale[b-vc1bmuqnkf] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    height: 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.btn-complete-sale:hover:not(:disabled)[b-vc1bmuqnkf] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-complete-sale:disabled[b-vc1bmuqnkf] {
    background: #d1d5db;
    cursor: not-allowed;
}

.btn-complete-sale .shortcut-badge[b-vc1bmuqnkf] {
    position: absolute;
    top: 3px;
    right: 6px;
    font-size: 0.55rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 3px;
    border-radius: 3px;
}

.spinner[b-vc1bmuqnkf] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-vc1bmuqnkf 0.8s linear infinite;
}

@keyframes spin-b-vc1bmuqnkf {
    to {
        transform: rotate(360deg);
    }
}

/* Cart Footer (Clear Button) */
.cart-footer[b-vc1bmuqnkf] {
    padding: 8px 16px 12px;
    background: white;
}

.btn-clear-cart[b-vc1bmuqnkf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #6c757d;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-cart:hover[b-vc1bmuqnkf] {
    background: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
}

/* ===== MODALS ===== */
.modal-overlay[b-vc1bmuqnkf] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-content[b-vc1bmuqnkf] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
}

.modal-header[b-vc1bmuqnkf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h5[b-vc1bmuqnkf] {
    margin: 0;
    font-weight: 600;
}

.modal-header button[b-vc1bmuqnkf] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
}

.modal-body[b-vc1bmuqnkf] {
    padding: 20px;
}

#barcode-scanner-container[b-vc1bmuqnkf] {
    width: 100%;
    min-height: 300px;
    background: #f3f4f6;
    border-radius: 8px;
}

.scanner-error[b-vc1bmuqnkf] {
    margin-top: 12px;
    padding: 10px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 6px;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pos-main-layout[b-vc1bmuqnkf] {
        flex-direction: column;
    }

    .pos-products-panel[b-vc1bmuqnkf],
    .pos-cart-panel[b-vc1bmuqnkf] {
        flex: none;
        width: 100%;
    }

    .pos-products-panel[b-vc1bmuqnkf] {
        height: 50vh;
    }

    .pos-cart-panel[b-vc1bmuqnkf] {
        height: 50vh;
    }

    .product-price[b-vc1bmuqnkf] {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .global-search-bar[b-vc1bmuqnkf] {
        padding: 8px 12px;
    }

    .last-added-toast[b-vc1bmuqnkf] {
        display: none;
    }

    .payment-btn span:not(.shortcut-badge)[b-vc1bmuqnkf] {
        display: none;
    }

    .payment-btn[b-vc1bmuqnkf] {
        padding: 10px;
    }

    .grand-total[b-vc1bmuqnkf] {
        font-size: 1.25rem;
    }
}
/* _content/HirdavatPOS.Web/Pages/Transactions/Details.razor.rz.scp.css */
.transaction-details-container[b-lpbuwwun0q] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
    min-height: 400px;
    max-height: calc(100vh - 180px);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.transaction-details-container > .card[b-lpbuwwun0q] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    flex: 1;
}

.transaction-details-container .card-header[b-lpbuwwun0q] {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
}

.transaction-details-container .card-header h5[b-lpbuwwun0q] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.transaction-details-container .card-body[b-lpbuwwun0q] {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.transaction-details-container .card-body p[b-lpbuwwun0q] {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.transaction-details-container .card-body p:last-of-type[b-lpbuwwun0q] {
    margin-bottom: 0;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .transaction-details-container[b-lpbuwwun0q] {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .transaction-details-container .card-body .row > div[b-lpbuwwun0q] {
        margin-bottom: 0.5rem;
    }
}

/* _content/HirdavatPOS.Web/Shared/MainLayout.razor.rz.scp.css */
.page[b-74y084scup] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-74y084scup] {
    flex: 1;
}

.sidebar[b-74y084scup] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-74y084scup] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-74y084scup]  a, .top-row .btn-link[b-74y084scup] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-74y084scup] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-74y084scup] {
        display: none;
    }

    .top-row.auth[b-74y084scup] {
        justify-content: space-between;
    }

    .top-row a[b-74y084scup], .top-row .btn-link[b-74y084scup] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-74y084scup] {
        flex-direction: row;
    }

    .sidebar[b-74y084scup] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-74y084scup] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-74y084scup], article[b-74y084scup] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/HirdavatPOS.Web/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-36g5lv2do1] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-36g5lv2do1] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-36g5lv2do1] {
    font-size: 1.1rem;
}

.oi[b-36g5lv2do1] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-36g5lv2do1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-36g5lv2do1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-36g5lv2do1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-36g5lv2do1]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-36g5lv2do1]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-36g5lv2do1]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-36g5lv2do1] {
        display: none;
    }

    .collapse[b-36g5lv2do1] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-36g5lv2do1] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
