/* ==========================================================================
   1. CORE & GLOBAL OVERRIDES
   ========================================================================== */
* {
    border-radius: 0 !important;
}

body {
    /* Optional: Add global body styles here if needed */
    font-family: "Roboto", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Roboto", sans-serif !important;
}

/* Container fixes */
@media (max-width: 991px) {
    .container {
        width: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-left: 2px !important;
        margin-right: 2px !important;
        margin-top: auto !important;
    }
}

@media (min-width: 1420px) {
    .container {
        width: 1420px !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin: auto;
    }
}

/* Validation */
form:invalid > #submit {
    pointer-events: none !important;
}

/* ==========================================================================
   2. GRID SYSTEM PATCHES
   Forces col-md columns to behave like col-sm (trigger at 767px+)
   ========================================================================== */
@media (min-width: 767px) {
    .col-md-1,
    .col-md-10,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
}

.row-no-padding > [class*="col-"] {
    padding: 5px !important;
}

/* Sidebar Layout Spacing - Reduce gap between left and right panels */
.sol-container {
    padding-right: 5px !important;
}

.sag-container {
    padding-left: 5px !important;
}

/* Compact Grid System - Reduces gutters from 30px to 10px */
.row-compact {
    margin-left: -5px !important;
    margin-right: -5px !important;
}

.row-compact > [class*="col-"] {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* Compact Form Groups - Reduces vertical margin */
.form-group-compact {
    margin-bottom: 5px !important;
}

.form-group-compact label {
    margin-bottom: 2px !important;
}

/* ==========================================================================
   3. NAVIGATION (NAVBAR)
   ========================================================================== */
.navbar {
    margin-bottom: -1px !important;
    border: 1px solid #ddd !important;
}

.navbar-brand {
    left: 0;
    top: 0;
}

.navbar-toggle {
    z-index: 3;
}

.navbar-nav > li > a {
    display: flex;
    align-items: center;
    height: 50px;
}

/* Dropdowns */
.dropdown-menu {
    min-width: 160px;
    width: auto;
    z-index: 9999 !important;
}

/* Bootstrap Select için min-width 100% kuralını koruyalım */
.bootstrap-select .dropdown-menu {
    min-width: 100% !important;
    max-width: 400px !important;
}

.bootstrap-select .dropdown-menu li a span.text {
    display: inline-block;
    max-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-group.open {
    z-index: 1000 !important;
    position: relative !important;
}

.dropdown-menu > li > a {
    padding-left: 10px !important;
}

.dropdown-menu .divider {
    margin: 4px 0 !important;
}

/* Enable Hover for Desktop Dropdowns */
@media (min-width: 768px) {
    ul.nav li.dropdown:hover > ul.dropdown-menu {
        display: block;
    }
}

.dropdown-toggle {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Global dropdown actions (Dışarı Aktar / Gönder) */
.global-action-group .global-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 30px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.1px;
    padding: 5px 10px;
    flex-direction: row;
    text-align: left;
}

.global-action-group .global-action-btn > .fa {
    width: 14px;
    text-align: center;
}

.global-export-btn > .fa {
    color: #2e7d32 !important;
}

.global-send-btn > .fa {
    color: #1f5fbf !important;
}

.global-action-group .global-action-btn .caret {
    margin-left: 2px;
}

.global-action-group.open .global-action-btn,
.global-action-group .global-action-btn:hover,
.global-action-group .global-action-btn:focus {
    background-color: #f5f7fa;
    border-color: #b9c2cc;
}

.global-action-group .dropdown-menu > li > a > .fa {
    width: 14px;
    text-align: center;
}

/* Reverse icon colors in active toggle buttons */
#siparis_tip_list .btn.active i {
    color: #fff !important;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-ust {
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.menu-alt {
    font-size: 10px;
    margin: 0;
    line-height: 1.5;
    font-weight: bold;
}

@media (max-width: 991px) {
    .navbar-brand {
        position: absolute;
    }
    .nav {
        padding-left: 0 !important;
        margin-bottom: 0;
        list-style: none;
    }
}

/* ==========================================================================
   4. TABLES (DATATABLES)
   ========================================================================== */
/* Dropdown and Overflow fixes for DataTables */
.table-responsive,
.dataTables_wrapper,
.dataTables_scroll,
.dataTables_scrollBody,
.dataTables_scrollHead {
    overflow: visible !important;
    overflow-x: visible !important;
}

/* Aggressive Dropdown Fixes within Tables */
.table td,
.table th {
    overflow: visible !important;
}
.table tr {
    transform: none !important;
    z-index: auto !important;
}

table {
    font-size: 12px !important;
}

table.dataTable {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting {
    padding-left: 2px !important;
}

table > thead > tr > td,
table > tbody > tr > td,
table > tbody > tr > th {
    padding: 2px 2px !important;
}

table.dataTable thead th,
table > tbody > tr > th {
    text-align: center !important;
}

.table > tbody > tr > td {
    vertical-align: middle;
}

table tbody tr td {
    max-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px !important;
}

/* Kasa/Fatura/Sipariş işlem dropdown menüsü için */
td.action-cell {
    overflow: visible !important;
    position: relative;
}

.row-actions-menu {
    width: auto !important;
    min-width: 180px !important;
    max-width: 320px !important;
}

.row-actions-menu > li > a {
    white-space: nowrap;
}

/* Row Coloring */
table.dataTable tr.Talep,
table.dataTable tr.Talep:nth-child(even) {
    background-color: #f8f1a821 !important;
}

table.dataTable tr.Temin,
table.dataTable tr.Temin:nth-child(even) {
    background-color: #f8a8a81f !important;
}

table.dataTable tr.TAHSILAT,
table.dataTable tr.TAHSILAT:nth-child(even) {
    background-color: #d4edda !important;
} /* Yeşilimsi */

table.dataTable tr.ODEME,
table.dataTable tr.ODEME:nth-child(even) {
    background-color: #ffeeba !important;
} /* Sarımsı */

table.dataTable tr.kapali-siparis {
    background-color: #d0e9c6 !important;
} /* Success Green */
table.dataTable tr.tahsilat-odeme {
    background-color: #faf2cc !important;
} /* Warning Yellow */

/* Interaction */

/* Animations */

@keyframes highlight-edit {
    from {
        background-color: #fff3cd;
    }
    to {
        background-color: transparent;
    }
}

/* DataTables UI Elements */

.dt-sunday,
.sunday {
    color: #b94a48 !important;
    font-weight: 600;
}

/* Table Checkboxes */
.row-select {
    width: 18px;
    height: 18px;
    margin: 0;
    vertical-align: middle;
}
td .checkbox label {
    display: inline-block;
    line-height: 18px;
}

/* ==========================================================================
   5. MODALS & PANELS
   ========================================================================== */
.modal-header .close {
    margin-top: 5px !important;
    margin-right: 5px !important;
}

.modal-header > .h4,
.h5,
.h6,
h4,
h5,
h6 {
    margin-top: 2px;
    margin-bottom: 2px;
}

.modal-title {
    margin-top: 5px;
}
.modal-body {
    padding: 5px;
}
.modal-footer {
    padding: 5px !important;
}

/* Modal form grid standardi: tum global modallarda dengeli bosluk */
#globalModal .modal-body .row,
#secondModal .modal-body .row {
    margin-left: -6px;
    margin-right: -6px;
}

#globalModal .modal-body .row > [class*="col-"],
#secondModal .modal-body .row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
}

#globalModal .modal-body .form-group,
#secondModal .modal-body .form-group {
    margin-bottom: 8px;
}

#globalModal .modal-body .form-group label,
#secondModal .modal-body .form-group label {
    margin-bottom: 3px;
}

/* Legacy Panel Supports (Moving away from these but keeping for safety) */
.panel-body {
    padding: 5px !important;
}
.panel-heading {
    padding: 3px 5px 3px 5px;
}
.panel-title {
    margin-top: 2px;
}

/* ==========================================================================
   6. HELPER CLASSES & COMPONENTS
   ========================================================================== */
.gizle {
    display: none;
} /* Consider using .hidden */
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.ortala {
    text-align: center !important;
}
.nowrap.small {
    font-size: 10px !important;
}
.vertical-align {
    display: flex;
    align-items: center;
}
/* Inline toolbar yardımcıları */
.ib-mid {
    display: inline-block !important;
    vertical-align: middle !important;
}
.inline-table-mid {
    display: inline-table !important;
    vertical-align: middle !important;
}
.w-80 {
    width: 80px !important;
}
.w-130 {
    width: 130px !important;
}
.w-120 {
    width: 120px !important;
}
.w-140 {
    width: 140px !important;
}
.w-150 {
    width: 150px !important;
}
.w-260 {
    width: 260px !important;
}
.ml-5 {
    margin-left: 5px !important;
}
.mr-5 {
    margin-right: 5px !important;
}
.muted-sep {
    color: #999;
}
/* Bootstrap Selectpicker Option Adjustments */
.bootstrap-select .dropdown-menu li a span.text {
    display: flex;
    align-items: center;
    gap: 5px; /* Bosluk */
}
.bootstrap-select .dropdown-menu li a span.text i {
    margin-right: 2px !important;
}

/* Buttons */
.btn-sm {
    padding: 5px 10px !important;
}
td button {
    padding: 4px 4px;
}

/* Forms
.form-control {
    padding: 2px 2px !important;
} */
select.input-sm {
    vertical-align: middle;
}

.label_input {
    color: #777;
}

.input-group-addon:hover {
    background-color: #ccc !important;
    cursor: pointer;
}
.input-group-addon:last-child {
    border-left: 0;
    border-right: 1px solid #ccc;
}
.label {
    padding: 0 !important;
}

/* Labels */

/* Bootstrap Tooltip Customization */
.tooltip {
    z-index: 10000 !important;
}
.tooltip-inner {
    background-color: #2c3e50 !important;
    color: #fff !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    max-width: 250px !important;
    text-align: center !important;
}

/* Custom Tooltip (Optional/Legacy) */
.custom-tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.custom-tooltip-wrapper .custom-tooltip {
    display: none;
    top: 100%;
    left: 50%;
    background-color: rgba(2, 44, 13, 0.9);
    color: #fff;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 9999;
}
.custom-tooltip-wrapper:hover .custom-tooltip {
    display: block;
}

/* Breadcrumbs */

/* Fiyat Listesi Module */

/* Misc */
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: 1;
}

/* Custom Large Font */
/* ==========================================================================
   7. MODULE SPECIFIC STYLES (Extracted from PHP files)
   ========================================================================== */

/* From modules/Siparisler/siparisler_form.php (Tarama Modu) */

/* From modules/Kasa/banka_import.php */
/* Mor renk akıllı eşleştirme için */
.smart-match {
    background-color: #f3e5f5 !important; /* Çok daha açık lavanta */
}
/* Akıllı eşleştirme butonu için mor renk */
.btn-purple {
    color: #fff;
    background-color: #9b59b6;
    border-color: #8e44ad;
}
.btn-purple:hover {
    background-color: #8e44ad;
    border-color: #7d3c98;
    color: #fff;
}

/* ==========================================================================
   8. MODAL SIZES & ALIGNMENT
   ========================================================================== */
.modal-dialog {
    margin: 30px auto !important; /* Top margin 30px, Horizontal Center */
}

@media (min-width: 768px) {
    .modal-sm {
        width: 300px !important;
    }
    .modal-md {
        width: 600px !important;
    } /* Default Bootstrap size usually */
    .modal-lg {
        width: 900px !important;
    }
    .modal-xl {
        width: 1140px !important;
    }

    .modal-70 {
        width: 70% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .modal-72 {
        width: 72% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .modal-90 {
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .modal-fullscreen {
        width: 98% !important;
        margin: 10px auto !important;
    }
}

/* Mobile Overrides */
@media (max-width: 767px) {
    .modal-dialog {
        width: 96% !important;
        margin: 10px auto !important;
    }
}

/* Tablet/Narrow Screen Overrides (800px and below) */
@media (max-width: 800px) {
    .modal-dialog {
        width: 98% !important;
        max-width: 98% !important;
        margin: 10px auto !important;
        margin-left: 1% !important;
        margin-right: 1% !important;
    }
    .modal-dialog.modal-70,
    .modal-dialog.modal-72,
    .modal-dialog.modal-90,
    .modal-dialog.modal-lg,
    .modal-dialog.modal-xl {
        width: 98% !important;
        max-width: 98% !important;
    }
    .modal-content {
        overflow-x: auto;
    }
    .modal-body {
        overflow-x: auto;
        max-width: 100%;
    }
}

/* From modules/Siparisler/siparisler_form.php (Tarama Modu Fixes) - Cleaned as per user request */

/* Height Normalization for Standard Inputs */

/* Input Group Alignment */

/* Specific button colors override */

/* ==========================================================================
   9. BOOTSTRAP SELECT OVERRIDES
   ========================================================================== */
.bootstrap-select > .dropdown-toggle {
    border-radius: 0 !important;
    background-color: #fff;
    border: 1px solid #ccc;
}

/* Fix z-index for modals */
.bootstrap-select .dropdown-menu {
    z-index: 9999 !important;
}

/* Compact Form Support */

/* Ensure dropdown menu text is readable and sized correctly */
.bootstrap-select .dropdown-menu li a {
    font-size: 12px !important;
    padding: 4px 10px !important;
}
.bootstrap-select .dropdown-menu .bs-searchbox .form-control {
    border-radius: 0 !important;
    font-size: 12px !important;
    padding: 4px 8px !important;
    height: 30px !important;
}
:not(.input-group) > .bootstrap-select.form-control:not([class*="col-"]) {
    padding: 0 !important;
    height: 30px !important;
    width: 100% !important;
}

/* Force bootstrap-select button to not expand */
.bootstrap-select.btn-group,
.bootstrap-select.btn-group .dropdown-toggle {
    width: 100% !important;
    table-layout: fixed !important;
    max-width: 100% !important;
    overflow: hidden !important;
}
fieldset.scheduler-border {
    border: 1px solid #e5e5e5 !important;
    padding: 0px 10px 0 10px !important;
}
legend.scheduler-border {
    width: auto !important;
    border: 1px solid #e5e5e5;
}
legend {
    position: relative;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 0px;
}
.scheduler-border {
    padding: 0 6px 0 6px;
    margin-bottom: 0;
}
.legend {
    position: relative;
    top: -3.4em;
    margin-bottom: -3.4em;
}
.legend2 {
    position: absolute;
    top: 3px;
    right: 11px;
    background: #fff;
    line-height: 1.2em;
}
.native-select {
    height: 30px !important;
    font-size: 13px;
    line-height: 1.42857143;
}
/* Native Select (Bypasses Bootstrap-Select initialization)
.native-select {
    display: block !important;
    width: 100%;
    height: 30px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition:
        border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
}
.native-select:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
} */
input[type="number"] {
    text-align: right;
}

/* ==========================================================================
   9.5 JQUERY UI DATEPICKER FIXES
   ========================================================================== */
/* Use standard UI icons or generic ones */

/* ==========================================================================
   10. JQUERY UI AUTOCOMPLETE STYLES
   ========================================================================== */
.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    padding: 4px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 13px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Helper to force autocomplete above other bootstrap modals if needed */

/* ==========================================================================
   11. MODAL WIDTH SAFEGUARDS
   ========================================================================== */
/* Center modals */
.modal-dialog {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Limit modal width to match Container widths at various breakpoints */

/* Standard Tablets/Small Desktops */
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 720px !important;
    }
}

/* Medium Desktops */
@media (min-width: 992px) {
    .modal-dialog {
        max-width: 940px !important;
    }
}

/* Large Desktops */
@media (min-width: 1200px) {
    .modal-dialog {
        max-width: 1140px !important;
    }
}

/* Extra Large (Custom) Desktops - Matches site's 1420px container */
@media (min-width: 1420px) {
    .modal-dialog {
        max-width: 1400px !important;
    }
}

/* Handle mobile fallback */
@media (max-width: 767px) {
    .modal-dialog {
        max-width: 95% !important;
    }
}

/* Reduce modal header height and align items */
.modal-header {
    padding: 8px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 40px !important; /* Ensure minimal touch target but concise */
}

/* Ensure title doesn't add extra height and stays left */
.modal-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: normal !important;
    font-weight: 500 !important;
    text-align: left !important;
    flex-grow: 1; /* Pushes the button to the right */
}

/* ==========================================================================
   12. CUSTOM TOAST NOTIFICATION STYLES
   ========================================================================== */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    width: 350px;
    max-width: 90%;
    display: flex;
    flex-direction: column-reverse; /* Stacks upwards */
    pointer-events: none;
}

.toast-msg {
    background-color: #fff;
    border-left: 5px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 10px; /* Space between toasts when stacking upwards */
    padding: 15px;
    border-radius: 4px;
    position: relative;
    opacity: 0;
    animation: toastIn 0.3s forwards;
    font-size: 13px;
    color: #333;
    pointer-events: auto;
}

.toast-msg.success {
    border-left-color: #28a745;
}
.toast-msg.error {
    border-left-color: #dc3545;
}
.toast-msg.warning {
    border-left-color: #ffc107;
}
.toast-msg.info {
    border-left-color: #17a2b8;
}

.toast-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: #999;
    font-size: 24px;
    line-height: 1;
}

.toast-close:hover {
    color: #333;
}

@keyframes toastIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Fatura Durum Göstergeleri (Sol Sınır) */
table.dataTable tbody tr.status-warning {
    border-left: 4px solid #ffc107 !important;
}

/* Seçili Satır Görünürlüğü */
table.dataTable tbody tr.selected,
table.dataTable tbody tr.selected td {
    background-color: #bbe7fa !important;
}

table.dataTable tbody tr.selected td a,
table.dataTable tbody tr.selected td strong,
table.dataTable tbody tr.selected td small {
    color: #ffffff !important;
}

/* Seçili satırdaki buton/metin ikonlarını okunur tut */
table.dataTable tbody tr.selected .btn,
table.dataTable tbody tr.selected .btn i,
table.dataTable tbody tr.selected .dropdown-toggle,
table.dataTable tbody tr.selected .dropdown-menu a {
    color: #333 !important;
}

table#kasa_hareket_tablo tbody tr.kasa-row-selected,
table#kasa_hareket_tablo tbody tr.kasa-row-selected td {
    background-color: #ffffff !important;
    color: #12303a !important;
}

table#kasa_hareket_tablo tbody tr.kasa-row-selected a,
table#kasa_hareket_tablo tbody tr.kasa-row-selected span {
    color: #12303a !important;
}

table.dataTable tbody tr:hover {
    background-color: #f5f5f5 !important;
}
.money-input {
    text-align: right !important;
}
/* DataTables wrapper için flexbox hizalama */
.tab-content-fatura {
    background-color: #fff;
    /* padding: 10px;*/
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.number-input {
    text-align: right;
}
.dropdown-menu.open {
    width: inherit !important;
}

/* Bank Import Satır Odaklanma Efekti */
#bank_import_table tbody tr:focus-within {
    background-color: #fff9c4 !important; /* Açık sarı - odaklanılan satırı belli eder */
    transition: background-color 0.2s;
}
#bank_import_table tbody tr:focus-within td {
    background-color: transparent !important; /* tr renginin görünmesini sağlar */
}

/* Hata durumunda satırın kırmızı olması (diğer renkleri ezmek için) */
#bank_import_table tbody tr.danger,
#bank_import_table tbody tr.danger td {
    background-color: #f2dede !important;
    color: #a94442 !important;
}
#bank_import_table tbody tr.danger .row-matching {
    border: 1px solid #a94442 !important;
}
#bank_import_table tbody tr.nearDuplicateRow,
#bank_import_table tbody tr.nearDuplicateRow td {
    background-color: #fff3cd !important;
}
#bank_import_table tbody tr.nearDuplicateRow td:first-child {
    border-left: 4px solid #f0ad4e !important;
}

/* Banka ekstre içe aktar: modal taşma/yerleşim düzeltmeleri */
#matching_section.bank-import-matching {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 220px);
    overflow: hidden;
}
#matching_section .bank-import-table-wrap {
    flex: 1 1 auto;
    min-height: 240px;
    max-height: calc(100vh - 310px);
    overflow-y: auto !important;
    overflow-x: auto !important;
    margin-bottom: 8px;
    border: 1px solid #ddd;
}
#matching_section .bank-import-actions {
    flex: 0 0 auto;
    background: #f9f9f9;
    padding: 10px;
    border-top: 1px solid #eee;
}
#bank_import_table {
    table-layout: fixed !important;
    width: 100%;
}
#bank_import_table th,
#bank_import_table td {
    vertical-align: middle !important;
}
#bank_import_table .bootstrap-select {
    width: 100% !important;
}
#bank_import_table .bootstrap-select > .dropdown-toggle {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 22px;
}
#bank_import_table .form-control.input-sm,
#bank_import_table .bootstrap-select > .dropdown-toggle.btn {
    height: 28px !important;
    min-height: 28px !important;
    line-height: 26px !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    font-size: 12px !important;
}
#bank_import_table .bootstrap-select > .dropdown-toggle .filter-option {
    font-size: 12px !important;
    line-height: 20px !important;
}
#bank_import_table .row-aciklama {
    min-width: 0 !important;
    max-width: none !important;
}
#bank_import_table tbody tr.matching-active,
#bank_import_table tbody tr.matching-active td {
    background-color: #fff4cc !important;
}
#bank_import_table tbody tr.matching-active td:first-child {
    border-left: 4px solid #f0ad4e !important;
    position: relative;
    padding-left: 22px !important;
}
#bank_import_table tbody tr.matching-active td:first-child:before {
    content: ">";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 14px;
    color: #d58512;
    line-height: 1;
}

/* ==========================================================================
   9. RESPONSIVE VISIBILITY CLASSES
   ========================================================================== */
/* Hide element when screen width is below 800px */
@media (max-width: 800px) {
    .full-width {
        width: 100% !important;
    }
}

/* Hide element when screen width is 800px or above */
@media (min-width: 801px) {
    /* Hide horizontal scroll on wide screens for DataTables */
    .dataTables_scrollBody,
    .dataTables_scroll,
    div.dataTables_scrollBody {
        overflow-x: hidden !important;
    }
    .dataTables_scrollHead,
    div.dataTables_scrollHead {
        overflow: hidden !important;
    }
    /* Also hide the bottom scrollbar */
    .table-responsive {
        overflow-x: visible !important;
    }
}

/* ==========================================================================
   10. DASHBOARD MODERN STYLES
   ========================================================================== */

/* Stat Cards */
.dashboard-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

/* Card Colors */
.stat-card.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card.orange {
    background: linear-gradient(135deg, #772881 0%, #f5576c 100%);
}

.stat-card.green {
    background: linear-gradient(135deg, #265783 0%, #00f2fe 100%);
}

.stat-card.purple {
    background: linear-gradient(135deg, #043a16 0%, #38f9d7 100%);
}

.stat-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-card-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff !important;
}

.stat-card-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card-icon {
    font-size: 48px;
    opacity: 0.3;
}

.stat-card-footer {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-card-footer i {
    font-size: 10px;
}

/* Quick Actions */

/* Dashboard Row Equal Height */
#anasayfa .row {
    display: flex;
    flex-wrap: wrap;
}

#anasayfa .row > [class*="col-"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch; /* Yüksekliklerin eşitlenmesi için */
}

#anasayfa .row > [class*="col-"] > .dashboard-panel {
    flex: 1 1 calc(50% - 10px); /* Akıllı genişlik: Müsaitse 50%, değilse 100% */
    margin-bottom: 10px;
    min-width: 300px; /* Çok daralmaması için */
}

/* Tek kalan panellerin tam genişlik olması için (Son Siparişler gibi) */
#anasayfa .row > [class*="col-"] > .dashboard-panel:only-child,
#anasayfa .row > [class*="col-"] > .dashboard-panel.panel-full {
    flex: 1 1 100%;
}

/* Dashboard Panels */
.dashboard-panel {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px; /* Boşluk azaltıldı */
    display: flex;
    flex-direction: column;
}

.dashboard-panel-header {
    padding: 4px 10px; /* Padding azaltıldı */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px 4px 0 0;
}

.dashboard-panel-header h4 {
    margin: 0;
    font-weight: 400;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px; /* Başlık küçültüldü */
    white-space: nowrap;
}

.dashboard-panel-header h4 i {
    color: #4361ee;
}

.kasa-toplam-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border: 1px solid #d6e4ff;
    border-radius: 6px;
    background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.kasa-toplam-title {
    font-size: 10px;
    color: #486285;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.kasa-toplam-title i {
    color: #3f7ecb;
}

.kasa-toplam-value {
    font-size: 14px;
    font-weight: 700;
    color: #1d4e89;
    white-space: nowrap;
}

.dashboard-panel-body {
    padding: 4px; /* Padding azaltıldı */
    flex: 1;
}

/* Recent Items List */
.recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 6px; /* Sıkılaştırıldı */
    margin-bottom: 3px; /* Boşluk azaltıldı */
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: #fff;
}

.recent-list-item:last-child {
    margin-bottom: 0;
}

.recent-list-item:hover {
    background: #f8f9ff;
    border-color: #4361ee;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.08);
}

.recent-list-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-list-item-title {
    font-weight: 600;
    color: #2b2d42;
    font-size: 12px; /* Font uyarlandı */
    line-height: 1.2;
}

.recent-list-item-subtitle {
    font-size: 10px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recent-list-item-value {
    font-weight: 700;
    color: #4361ee;
    text-align: right;
    font-size: 13px;
}

/* Kasa Summary Cards - Two Columns */
.kasa-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    width: 100%;
    margin: 0;
    justify-content: space-between;
    box-sizing: border-box;
}

.kasa-summary-item {
    width: calc(50% - 2px);
    padding: 4px 6px; /* Sıkılaştırıldı */
    margin: 0 0 4px; /* Alt boşluk azaltıldı */
    box-sizing: border-box;
    flex: 0 0 calc(50% - 2px);
    display: block;
    max-width: calc(50% - 2px);
    border-left: 3px solid #667eea;
    background: #f8f9fa;
    min-width: 0; /* Text truncation için önemli */
}

.kasa-summary-item.success {
    border-color: #28a745;
}

.kasa-summary-item.warning {
    border-color: #ffc107;
}

.kasa-summary-item.danger {
    border-color: #dc3545;
}

.kasa-summary-item h5 {
    font-size: 11px;
    margin: 0 0 1px 0;
    color: #888;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kasa-summary-item .value {
    font-size: 13px; /* Font uyarlandı */
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dashboard Chart Container */
.dashboard-chart-container {
    position: relative;
    height: 240px; /* Yükseklik azaltıldı */
    padding: 0;
}

/* Panel Heights Match */
.dashboard-panel-body.equal-height {
    min-height: 480px; /* Sağ panel yüksekliği solla dengelendi */
    max-height: 600px;
    overflow-y: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-card {
        min-width: 100%;
    }

    .kasa-summary {
        flex-direction: column;
    }
}

.bs-searchbox {
    padding: 4px 4px !important;
}

/* Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a {
    position: relative;
    padding-right: 25px !important;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -5px;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > a {
    padding-left: 25px !important;
    padding-right: 15px !important;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: -1px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown-submenu.pull-left > a:after {
    left: 10px;
    right: auto;
    border-width: 5px 5px 5px 0;
    border-left-color: transparent;
    border-right-color: #ccc;
}

.dropdown-submenu.pull-left:hover > a:after {
    border-right-color: #fff;
}
#siparisModal .modal-header {
    display: block !important;
}
.modul-iskelet-content {
    padding: 0 !important;
    border: none;
    box-shadow: none;
}
.modul-iskelet-filtreler {
    padding: 3px 2px !important;
    border: 1px solid #ddd;
}
.modul-iskelet-icerik {
    padding: 0 !important;
}
.modul-iskelet-icerik > .table-responsive {
    padding: 0 !important;
}

/* Legacy .modul-content deeply nested rules kept for safety */
.dt-info {
    float: left;
}
.dt-paging {
    float: right;
}
/* Flex Fix for Bootstrap Select */
.bootstrap-select .dropdown-menu > li > a > span.text {
    display: inline-flex !important;
    align-items: center !important;
}
/* Force Bootstrap Tab Pane Visibility */
.tab-content > .tab-pane {
    display: none !important;
}
.tab-content > .tab-pane.active {
    display: block !important;
}
.nav > li > a {
    padding: 5px 15px !important;
}
#ekstre_ozet_kartlar {
    padding: 0 3px 0 3px;
}
#ekstre_ozet_kartlar > div.col-md-3 {
    padding: 0 2px 0 2px !important;
}

/* ==========================================================================
   10. FORM STANDARTLARI (INLINE STYLE TASIMA BLOKU)
   ========================================================================== */
.form-inline-hidden {
    display: none;
}

.form-w-100 {
    width: 100% !important;
}

.form-mb-0 {
    margin-bottom: 0 !important;
}

.form-m-5 {
    margin: 5px !important;
}

.form-p-2 {
    padding: 2px !important;
}

.form-p-6-10 {
    padding: 6px 10px !important;
}

.form-mt-4 {
    margin-top: 4px !important;
}

.form-mt-10 {
    margin-top: 10px !important;
}

.form-mt-15 {
    margin-top: 15px !important;
}

.form-row-mt-8 {
    margin-top: 8px !important;
}

.form-row-mt-10 {
    margin-top: 10px !important;
}

.form-row-mb-10 {
    margin-bottom: 10px !important;
}

.form-panel-heading-tight {
    padding: 8px 12px !important;
}

.form-panel-body-tight {
    padding: 10px !important;
}

.form-panel-body-zero {
    padding: 0 !important;
}

.form-table-mb-0 {
    margin-bottom: 0 !important;
}

.form-label-11 {
    font-size: 11px !important;
}

.form-alert-tight {
    padding: 10px !important;
    font-size: 12px !important;
}

.form-font-12 {
    font-size: 12px !important;
}

.form-hr-10 {
    margin: 10px 0 !important;
}

.form-th-w-80 {
    width: 80px !important;
}

.form-th-w-120 {
    width: 120px !important;
}

.form-th-w-130 {
    width: 130px !important;
}

.form-th-w-160 {
    width: 160px !important;
}

.form-th-w-90 {
    width: 90px !important;
}

.form-split-right {
    border-right: 1px solid #eee;
}

.form-control-muted {
    background: #fafafa !important;
    color: #777 !important;
}

.arac-form-modal-body {
    padding-top: 5px;
    padding-bottom: 5px;
}

.arac-form-tab-link {
    font-weight: 700;
}

.arac-form-tab-content {
    padding: 5px;
    border: 1px solid #ddd;
    border-top: none;
    background-color: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.form-mr-2 {
    margin-right: 2px !important;
}

.form-ml-6 {
    margin-left: 6px !important;
}

.form-table-clean {
    margin: 0 !important;
    background: #fff;
}

.form-font-16 {
    font-size: 16px !important;
}

.evrak-preview-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.evrak-preview-fallback {
    padding: 20px;
}
.siparis-form-title {
    font-size: 12px;
    font-weight: 700;
}
.siparis-form-title-satis {
    color: #337ab7;
}
.siparis-form-title-temin {
    color: #c0392b;
}

/* ========================================================================== */
/* ========================================================================== */
/* 12. MODUL BAZLI SINIF ALIASLARI (HASH REFRACTOR) */
/* ========================================================================== */
/* login */
.login-container.auth-ui-card {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

/* Arac */
.arac-ui-001 {
    margin-top: 0;
}
.arac-ui-002 {
    margin: 10px 0;
}

/* Auth */

/* Cari */
.cari-ui-001 {
    background-color: #f39c12;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cari-ui-002 {
    color: white;
    font-weight: bold;
    margin: 0;
}
.cari-ui-003 {
    order: 2;
}
.cari-ui-004 {
    padding: 5px 10px;
}
.cari-ui-005 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}
.cari-ui-006 {
    display: flex;
    gap: 0;
}
.cari-ui-007 {
    width: 20%;
    background-color: #f9f9f9;
}
.cari-ui-008 {
    width: 80%;
}
.cari-ui-009 {
    display: flex;
    gap: 0px;
}
.cari-ui-010 {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.cari-ui-011 {
    font-weight: bold;
    text-align: right;
}
.cari-ui-012 {
    color: #25d366;
}
.cari-ui-013 {
    display: none;
}
.cari-ui-014 {
    font-size: 12px;
}

/* Fatura */
.fatura-ui-001 {
    margin-bottom: 6px;
}
.fatura-ui-002 {
    display: flex;
    gap: 0;
}
.fatura-ui-003 {
    display: none;
    height: 24px !important;
    padding: 2px 6px !important;
    font-size: 12px !important;
    line-height: normal !important;
}
.fatura-ui-004 {
    display: none;
}
.fatura-ui-005 {
    width: 30px;
}
.fatura-ui-006 {
    margin-right: 5px;
    display: none;
}
.fatura-ui-007 {
    margin-top: 6px;
}
.fatura-ui-008 {
    margin-bottom: 0px !important;
}
.fatura-ui-009 {
    background-color: #eee;
}
.fatura-ui-010 {
    font-size: 10px;
    vertical-align: middle;
}
.fatura-ui-011 {
    z-index: 2000;
}
.fatura-ui-012 {
    background-color: #337ab7;
    color: white;
}
.fatura-ui-013 {
    text-align: center;
    border-top: none;
}
.fatura-ui-014 {
    background-color: #4f46e5;
    color: #fff;
    padding: 8px 15px;
    overflow: hidden;
}
.fatura-ui-015 {
    width: 26px;
    height: 26px;
    line-height: 24px;
    padding: 0;
    margin-left: 0;
}
.fatura-ui-016 {
    height: 26px;
    line-height: 24px;
    padding: 0 12px;
    font-weight: bold;
    margin-right: 10px;
    vertical-align: middle;
}
.fatura-ui-017 {
    margin-right: 15px;
    height: 26px;
    line-height: 26px;
}
.fatura-ui-018 {
    color: #fff;
    padding: 0;
    min-height: 26px;
    line-height: 26px;
    cursor: pointer;
    font-weight: normal;
    vertical-align: middle;
    display: inline-block;
}
.fatura-ui-019 {
    margin: 6px 6px 0 0;
    float: left;
    position: static;
}
.fatura-ui-020 {
    margin-right: 15px;
}
.fatura-ui-021 {
    height: 26px;
    width: 140px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    padding: 2px 8px;
    vertical-align: middle;
}
.fatura-ui-022 {
    font-weight: bold;
    line-height: 26px;
    font-size: 14px;
    margin: 0;
    vertical-align: middle;
    display: inline-block;
}
.fatura-ui-023 {
    width: 100%;
}
.fatura-ui-024 {
    width: 20px;
}

/* Kasa */

/* Personel */

/* Siparis */
.siparis-ui-001 {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}
.siparis-ui-002 {
    padding: 8px 15px;
}
.siparis-ui-003 {
    margin-right: 5px;
}
.siparis-ui-004 {
    font-size: 16px;
}
.siparis-ui-005 {
    opacity: 0.8;
    margin-left: 10px;
    color: #fff;
}
.siparis-ui-006 {
    padding: 0;
    height: 85vh;
    display: flex;
}
.siparis-ui-007 {
    flex: 1;
    min-width: 420px;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.siparis-ui-008 {
    padding: 6px 10px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}
.siparis-ui-009 {
    flex: 1;
    overflow-y: auto;
    padding: 0 10px;
}
.siparis-ui-010 {
    display: flex;
}
.siparis-ui-011 {
    width: 30%;
    font-weight: bold;
    text-align: center;
}
.siparis-ui-012 {
    width: 70%;
}
.siparis-ui-013 {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    text-align: left;
    color: #777;
}
.siparis-ui-014 {
    color: #3498db;
    cursor: help;
    margin-left: 4px;
    vertical-align: middle;
    font-size: 14px;
}
.siparis-ui-015 {
    text-align: center;
}
.siparis-ui-016 {
    flex: 1;
}
.siparis-ui-017 {
    text-transform: uppercase;
}
.siparis-ui-018 {
    padding: 5px 2px;
    display: none;
}
.siparis-ui-019 {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
}
.siparis-ui-020 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 8px;
    padding-bottom: 4px;
}
.siparis-ui-021 {
    font-weight: bold;
    font-size: 11px;
    color: #495057;
}
.siparis-ui-022 {
    font-size: 9px;
    padding: 2px 5px !important;
}
.siparis-ui-023 {
    font-size: 11px;
    line-height: 1.6;
}
.siparis-ui-024 {
    padding: 10px 2px;
}
.siparis-ui-025 {
    width: 200px;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    background: #2d2d2d;
}
.siparis-ui-026 {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-bottom: 2px solid #555;
}
.siparis-ui-027 {
    padding: 6px 8px;
    border-bottom: 1px solid #444;
    background: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.siparis-ui-028 {
    color: #ffc107;
    font-size: 12px;
}
.siparis-ui-029 {
    padding: 2px 5px;
}
.siparis-ui-030 {
    border-bottom: 1px solid #444;
}
.siparis-ui-031 {
    color: #ff9800;
    border-left: 3px solid #ff9800;
}
.siparis-ui-032 {
    flex: 1;
    overflow-y: auto;
}
.siparis-ui-033 {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.siparis-ui-034 {
    color: #5bc0de;
    font-size: 12px;
}
.siparis-ui-035 {
    flex: 1;
    overflow-y: auto;
    position: relative;
}
.siparis-ui-036 {
    color: #555;
    text-align: center;
    padding: 20px;
    font-size: 11px;
}
.siparis-ui-037 {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}
.siparis-ui-038 {
    display: none;
}
.siparis-ui-039 {
    display: none;
    text-align: center;
    padding: 10px;
    color: #888;
}
.siparis-ui-040 {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    min-width: 300px;
}
.siparis-ui-041 {
    padding: 6px 10px;
    background: #222;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.siparis-ui-042 {
    display: flex;
    gap: 3px;
}
.siparis-ui-043 {
    border-right: 1px solid #444;
    margin: 0 5px;
}
.siparis-ui-044 {
    display: none;
}
.siparis-ui-045 {
    padding: 3px 10px;
    background: #333;
    color: #aaa;
    font-size: 11px;
    border-bottom: 1px solid #444;
}
.siparis-ui-046 {
    flex: 1;
    overflow: auto;
    position: relative;
}
.siparis-ui-047 {
    color: #555;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.siparis-ui-048 {
    font-size: 64px;
}
.siparis-ui-049 {
    margin-top: 10px;
}
.siparis-ui-050 {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.siparis-ui-051 {
    display: none;
    max-width: 100%;
    max-height: 100%;
}
.siparis-ui-052 {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 2px dashed #444;
    border-radius: 10px;
    padding: 40px;
    width: 80%;
    height: 80%;
    cursor: pointer;
}
.siparis-ui-053 {
    font-size: 48px;
    margin-bottom: 10px;
}

/* 13. DOSYA-BAZLI FORM UI SINIFLARI (CAKISMA ONLEME) */

/* Auth */
.auth-ui-card {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Kasa */
.kasa-dekont-ui-001 {
    padding: 5px;
}
.kasa-dekont-ui-002 {
    background: #fafafa;
    color: #777;
    border-style: dashed;
}
.kasa-dekont-ui-003 {
    margin-bottom: 5px;
    margin-top: 5px;
}
.kasa-dekont-ui-004 {
    font-weight: bold;
    vertical-align: middle;
}
.kasa-dekont-ui-005 {
    font-weight: bold;
    font-size: 16px;
    vertical-align: middle;
}
.kasa-dekont-ui-006 {
    margin-top: 0;
    padding: 10px 15px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}
.kasa-dekont-ui-007 {
    margin-right: 2px;
}
.kasa-dekont-ui-008 {
    vertical-align: middle;
    font-weight: bold;
    color: #777;
}
.kasa-dekont-ui-009 {
    font-weight: bold;
}
.kasa-dekont-ui-010 {
    vertical-align: middle;
}
.kasa-dekont-ui-011 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.kasa-dekont-ui-012 {
    display: none;
    margin-right: 2px;
}
.kasa-dekont-ui-013 {
    margin: 0;
}
.kasa-dekont-ui-014 {
    display: none;
}
.kasa-dekont-ui-015 {
    background: #337ab7;
    color: #fff;
}
.kasa-dekont-ui-016 {
    max-height: 70vh;
    overflow: auto;
}
.kasa-dekont-ui-017 {
    margin-bottom: 0;
}
.kasa-dekont-ui-018 {
    width: 1%;
}
.kasa-dekont-ui-019 {
    font-weight: 600;
    margin-left: 6px;
}
.kasa-hizmet-ui-001 {
    display: flex;
    justify-content: space-between;
}
.kasa-hizmet-ui-002 {
    display: none;
}

/* Personel */
.personel-bordro-ui-001 {
    min-height: 400px;
}
.personel-bordro-ui-002 {
    margin-bottom: 15px;
}
.personel-bordro-ui-003 {
    margin-top: 10px;
    display: none;
}
.personel-bordro-ui-004 {
    padding: 8px 12px;
    margin-bottom: 5px;
}
.personel-bordro-ui-005 {
    margin-left: 15px;
}
.personel-bordro-ui-006 {
    margin-left: 25px;
}
.personel-bordro-ui-007 {
    display: none;
    margin-top: 5px;
}
.personel-bordro-ui-008 {
    padding: 6px 10px;
    margin-bottom: 8px;
}
.personel-bordro-ui-009 {
    padding-top: 6px;
}
.personel-bordro-ui-010 {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.personel-bordro-ui-011 {
    font-size: 11px;
    margin-bottom: 2px;
    line-height: 1.2;
}
.personel-bordro-ui-012 {
    padding-top: 21px;
}
.personel-bordro-ui-013 {
    font-size: 11px;
    line-height: 1.2;
}
.personel-bordro-ui-014 {
    margin-top: 5px;
}
.personel-bordro-ui-015 {
    color: #337ab7;
}
.personel-bordro-ui-016 {
    color: #f0ad4e;
}
.personel-bordro-ui-017 {
    display: none;
}
.personel-bordro-ui-018 {
    margin-top: 10px;
}
.personel-bordro-ui-019 {
    position: absolute;
    right: 34px;
    top: 8px;
    z-index: 2;
}
.personel-bordro-ui-020 {
    margin-right: 6px;
    color: #337ab7;
}
.personel-bordro-ui-021 {
    color: #337ab7;
}
.personel-bordro-ui-022 {
    margin-right: 6px;
    color: #777;
}
.personel-bordro-ui-023 {
    color: #777;
}
.personel-bordro-ui-024 {
    color: #5cb85c;
}
.personel-bordro-ui-025 {
    margin-top: 10px;
    padding: 10px;
    font-size: 12px;
}
.personel-form-ui-001 {
    padding-top: 5px;
    padding-bottom: 5px;
}
.personel-form-ui-002 {
    padding-top: 5px;
    border: 1px solid #ddd;
    border-top: none;
    padding: 5px;
    background-color: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.personel-form-ui-003 {
    margin-top: 10px;
    margin-bottom: 0;
}
.personel-form-ui-004 {
    color: #337ab7;
    display: inline-block;
    width: 120px;
}
.personel-form-ui-005 {
    color: #5cb85c;
}
.personel-form-ui-006 {
    color: #f0ad4e;
}
.personel-form-ui-007 {
    color: #d9534f;
}
.personel-list-ui-001 {
    display: inline-block;
    width: auto;
}
.personel-list-ui-002 {
    width: 300px;
}
.personel-list-ui-003 {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.personel-list-ui-004 {
    display: inline-block;
    width: 120px;
}
.personel-list-ui-005 {
    display: none;
    width: 100%;
}
.personel-list-ui-006 {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}
.personel-list-ui-007 {
    width: 120px;
}
.personel-list-ui-008 {
    margin-top: 0;
    border-top: 0;
}
.personel-list-ui-009 {
    font-weight: bold;
    background-color: #f9f9f9;
}
.personel-list-ui-010 {
    border-top: 0;
}
.personel-list-ui-011 {
    border-top: 0;
    width: 100px;
}
.personel-list-ui-012 {
    border-top: 0;
    width: 120px;
}
.personel-list-ui-013 {
    font-weight: bold;
    background-color: #e8e8e8;
}
.personel-list-ui-014 {
    width: 100px;
}
.personel-list-ui-015 {
    background-color: #fff;
}
.personel-list-ui-016 {
    font-weight: bold;
}
.personel-list-ui-017 {
    padding: 40px;
}
.personel-list-ui-018 {
    display: none;
    padding: 0;
}
.personel-list-ui-019 {
    padding-top: 100px;
    text-align: center;
    color: #999;
    width: 100%;
}
.personel-list-ui-020 {
    max-height: 250px;
    overflow-y: auto;
}
.personel-list-ui-021 {
    width: 40px;
}
.personel-list-ui-022 {
    width: 180px;
}
.personel-list-ui-023 {
    padding: 5px 10px;
}
.personel-list-ui-024 {
    margin-top: 10px;
}
