/* Font tanımlamaları */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Tema Değişkenleri */
:root {
    --primary-color: #5A67D8;
    --secondary-color: #718096;
    --success-color: #31C48D;
    --warning-color: #F6AD55;
    --danger-color: #F98080;
    --dark-color: #2D3748;
    --light-color: #F7FAFC;
    --sidebar-width: 260px;
    --header-height: 70px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --border-radius: 0.35rem;
    --transition-speed: 0.3s;
    --box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
}

/* Genel Stiller */
body {
    font-family: var(--font-family);
    background: var(--light-color);
    color: var(--dark-color);
    min-height: 100vh;
}

.wrapper {
    display: flex;
    width: 100%;
}

/* Ana Layout */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1rem;
    transition: all 0.3s;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header a {
    display: inline-block;
    cursor: pointer;
}

.sidebar-header a:hover {
    opacity: 0.8;
}

.sidebar-logo {
    height: 35px;
    width: auto;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    padding: 0.75rem 1rem;
    margin: 0.2rem 0;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.2);
}

.nav-link i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.badge {
    margin-left: 5px;
}

/* Mobil için Sidebar ve Content düzenlemeleri */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-260px);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .content-wrapper {
        margin-left: 0;
        width: 100%;
    }

    /* Mobilde sidebar açıkken arka planı karart */
    .sidebar.active + .content-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* Navbar */
.navbar {
    height: 70px;
    padding: 0 1.5rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 998;
    display: flex;
    align-items: center;
}

.navbar .navbar-brand {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3748;
    margin-right: auto;
}

.navbar .ml-auto {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Sidebar Logo */
.sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo {
    height: 35px;
    width: auto;
}

/* Sidebar Menü */
.sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.sidebar .nav-link i {
    width: 20px;
    margin-right: 10px;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Mobil Navbar Toggle */
.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    border: none;
    color: #2c3e50;
}

@media (min-width: 769px) {
    .navbar-toggler {
        display: none;
    }
}

/* Kullanıcı Menüsü */
.user-menu-wrapper {
    position: relative;
    margin-left: 1rem;
    height: 70px;
    display: flex;
    align-items: center;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0 16px;
    background: #edf2f7;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 10px;
}

.user-menu-trigger:hover {
    background: #e2e8f0;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-info {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a202c;
    line-height: 1.2;
}

.user-role {
    font-size: 0.75rem;
    color: #4a5568;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 1000;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    color: #1a202c;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item i {
    width: 20px;
    margin-right: 10px;
    font-size: 1rem;
    color: #4a5568;
}

.dropdown-item:hover {
    background: #edf2f7;
    color: #2d3748;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #edf2f7;
}

/* Dark mode için kullanıcı menüsü */
body.dark-theme .user-menu-trigger {
    background: #2d3748;
}

body.dark-theme .user-menu-trigger:hover {
    background: #4a5568;
}

body.dark-theme .user-name {
    color: #fff;
}

body.dark-theme .user-role {
    color: #e2e8f0;
}

body.dark-theme .dropdown-menu {
    background: #2d3748;
    border-color: #4a5568;
}

body.dark-theme .dropdown-item {
    color: #f7fafc;
}

body.dark-theme .dropdown-item:hover {
    background: #4a5568;
    color: #fff;
}

body.dark-theme .dropdown-divider {
    border-color: #4a5568;
}

/* Mobil için kullanıcı menüsü */
@media (max-width: 768px) {
    .user-menu-wrapper {
        height: 60px; /* Mobilde biraz daha küçük */
    }

    .user-menu-trigger {
        height: 40px; /* Mobilde biraz daha küçük */
        padding: 0 12px;
    }

    .user-avatar {
        width: 28px;
        height: 28px;
    }

    .user-info {
        display: none;
    }
}

/* Üst Bar */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
    height: var(--header-height);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

/* Kartlar */
.card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.card-stat {
    padding: 1.25rem;
}

.card-stat .stat-title {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.card-stat .stat-value {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-stat .stat-desc {
    color: var(--secondary-color);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

/* Grafikler */
.chart-container {
    padding: 1.5rem;
}

/* Toggle Buton */
#sidebarToggle {
    padding: 0.5rem;
    font-size: 1.25rem;
    color: var(--dark-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

#sidebarToggle:hover {
    color: var(--primary-color);
}

/* Tema Toggle */
.theme-toggle {
    padding: 0.5rem;
    font-size: 1.25rem;
    color: var(--dark-color);
    background: #fff;
    border: none;
	border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-toggle:hover {
    color: var(--primary-color);
}

/* Navbar Stili */
.navbar {
    padding: 15px 25px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

#sidebarCollapse {
    background: transparent;
    border: none;
}

/* Tema Switch */
.theme-switch-wrapper {
    margin-right: 20px;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Bildirim İkonu */
.notification-icon {
    position: relative;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.7rem;
}

/* Kullanıcı Bilgileri */
.user-info {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-details {
    display: inline-block;
}

.user-name {
    display: block;
    color: #212529;
    font-size: 0.9rem;
}

.logout-btn {
    color: #fff;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* İstatistik Kartları */
.stat-box {
    background: #fff;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 1rem;
    height: 100px; /* Sabit yükseklik */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.stat-box:hover {
    transform: translateY(-3px);
}

.stat-box .stat-icon {
    position: absolute;
    right: 1rem;
    font-size: 3rem;
    opacity: 0.2;
}

.stat-box .stat-content {
    position: relative;
    z-index: 1;
}

.stat-box .stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

/* Tablo Stilleri */
.table {
    margin: 0;
}

.table th {
    background: #f8f9fc;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    border-top: none;
    padding: 12px 20px;
}

.table td {
    padding: 12px 20px;
    vertical-align: middle;
    border-top: 1px solid #f1f1f1;
}

/* Badge Stilleri */
.badge {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
}

/* Bildirim Listesi */
.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
}

.notification-content {
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
}

.notification-time {
    font-size: 12px;
    color: #999;
}

.no-notifications {
    text-align: center;
    padding: 30px 20px;
    color: #999;
}

.no-notifications i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .stat-box {
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .stat-box .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-box .stat-label {
        font-size: 0.7rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .table td, .table th {
        padding: 10px 15px;
    }
    
    .chart-container {
        height: 250px;
    }
}

.container-fluid {
    padding: 0 1.5rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: #f4f7fc;
}

.card-title {
    font-size: 1rem; /* Daha küçük başlık */
    margin-bottom: 10px;
}

.btn {
    border-radius: 0.35rem;
    padding: 0.375rem 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    border: none;
    box-shadow: 0 2px 4px rgba(78, 115, 223, 0.15);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #224abe 0%, #1a3a96 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(78, 115, 223, 0.25);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.alert {
    border-radius: 5px;
}

.form-control, .form-select {
    border-radius: 0.35rem;
    border: 1px solid #d1d3e2;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

/* Kartların renkleri */
.bg-primary {
    background: linear-gradient(135deg, #6777ef 0%, #4e54c8 100%);
}

.bg-info {
    background: linear-gradient(135deg, #36b9cc 0%, #1a8a9c 100%);
}

.bg-warning {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
}

.bg-danger {
    background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%);
}

/* İkon stilleri */
.stats-box .stats-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* İçerik stilleri */
.stats-box .stats-content {
    position: relative;
    z-index: 1;
}

.stats-box .stats-title {
    font-size: 14px; /* Font boyutunu küçülttük */
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.stats-box .stats-number {
    font-size: 32px; /* Font boyutunu küçülttük */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.stats-box .stats-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Tablo stilleri */
.table {
    margin: 0;
}

.table tbody td {
    padding: 12px 20px;
    font-size: 0.85rem;
    color: #444;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Bildirim stilleri */
.notifications-list {
    margin: -15px;
}

.notification-item p {
    margin: 0;
    color: #2c3e50;
    font-size: 0.95rem;
}

.notification-item small {
    color: #6c757d;
    font-size: 0.85rem;
}

.navbar-brand {
    padding: 0;
    margin-right: 20px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Footer stilleri */
.footer {
    padding: 8px 0;
    font-size: 12px;
}

/* Sayfa yapısı */
html, body {
    height: 100%;
    margin: 0;
}

.role-checkboxes {
    max-height: 150px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.role-checkboxes .custom-checkbox {
    margin-bottom: 8px;
}

/* Select2 stilleri */
.select2-container--bootstrap4 .select2-selection--multiple {
    min-height: 38px;
    border: 1px solid #ced4da;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 2px 8px;
    margin: 2px;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    margin-right: 5px;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-search__field {
    margin-top: 4px;
}

/* Tablo düzenlemesi */
.table-responsive {
    margin: 0;
}

/* Modal düzenlemesi */
.modal-dialog {
    max-width: 450px;
}

.modal-content {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: linear-gradient(45deg, var(--primary-color), #6f42c1);
    color: #fff;
    border-radius: 0.75rem 0.75rem 0 0;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Form grupları */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #344767;
}

/* Select2 düzenlemeleri */
.select2-container--bootstrap4 .select2-selection {
    border-color: #d1d3e2;
    border-radius: 0.5rem;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

/* Container içindeki mt-4 sınıfı için düzenleme */
.container.mt-4 {
    max-width: 1400px; /* Maksimum genişlik ekledik */
    margin: 0 auto; /* Ortalamak için */
    padding: 0 15px;
}

/* Buton container */
.button-group {
    display: flex;
    gap: 10px;
}

/* Excel ve Yeni Sipariş butonları */
.btn-excel, 
.btn-primary {
    height: 36px;
    padding: 0 15px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 4px;
}

.btn-excel {
    background-color: #28a745;
    color: #fff;
    border: none;
}

.btn-excel:hover {
    background-color: #218838;
}

/* Sipariş yönetimi başlık ve butonlar */
.siparis-yonetimi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* Filtre alanı */
.filter-area {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.filter-area .form-control {
    height: 36px;
    font-size: 0.85rem;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.filter-area input[type="text"] {
    min-width: 250px;
}

.filter-area select {
    min-width: 150px;
}

.filter-area input[type="date"] {
    width: 130px;
}

/* Filtre butonları */
.filter-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.btn-filtrele,
.btn-sifirla {
    height: 36px;
    padding: 0 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Durum badge'leri */
.badge-beklemede {
    background-color: #ffc107;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: normal;
    font-size: 0.85rem;
}

.badge-lazer {
    background-color: #17a2b8;
    color: #fff;
}

.badge-paketleme {
    background-color: #28a745;
    color: #fff;
}

.badge-sevkiyat {
    background-color: #dc3545;
    color: #fff;
}

/* İşlem butonları */
.btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-action {
    width: 32px;
    height: 32px;
    padding: 0;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    margin: 0 2px;
}

/* Rapor kartları */
.report-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.report-card .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.report-card .chart-container {
    height: 300px;
    margin-bottom: 15px;
}

.btn-excel i {
    margin-right: 5px;
}

/* Tarih seçici alanı */
.date-picker {
    width: 130px;
    font-size: 0.9rem;
}

/* Tablo başlıkları */
.table th {
    white-space: nowrap;
    background-color: #f8f9fa;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .siparis-yonetimi {
        flex-direction: column;
        gap: 10px;
    }

    .filter-area {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-area .form-control,
    .filter-area .btn {
        width: 100%;
    }

    .table-responsive {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
}

/* Checkbox sütunu */
.table th:first-child,
.table td:first-child {
    width: 40px;
    text-align: center;
    padding-left: 20px;
}

/* Dropdown menü stilleri */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

/* Dropdown animasyonu */
.dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    padding: .5rem 1.5rem;
    color: #212529;
    transition: all .2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #16181b;
}

.dropdown-item i {
    width: 20px;
    margin-right: 8px;
    color: #6c757d;
}

.dropdown-divider {
    margin: .5rem 0;
    border-top: 1px solid #e9ecef;
}

/* Animasyon */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .navbar-nav .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-item {
        padding: .5rem 1rem;
    }
}

/* Navbar ve Dropdown Stilleri */
.navbar {
    padding: .5rem 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.8);
    padding: .5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link i {
    margin-right: 5px;
}

/* Aktif menü öğesi */
.navbar-dark .navbar-nav .active>.nav-link {
    color: #fff;
    font-weight: 500;
}

/* Grid düzeni */
.row {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.col, [class*="col-"] {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    padding-top: 0.75rem;
}

/* İstatistik kartları için özel stiller */
.stat-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    min-height: 140px;
}

.stat-card .stat-icon {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    opacity: 0.2;
    font-size: 5rem;
    transform: rotate(-15deg);
}

/* Tablo kartları */
.table-card {
    margin-bottom: 2rem;
}

.table-card .card-body {
    padding: 0;
}

.table-card .table {
    margin: 0;
}

.table-card .table th {
    border-top: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
}

.table-card .table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

/* İstatistik kartları için gradient arka planlar */
.bg-gradient-primary {
    background: linear-gradient(45deg, #4e73df, #224abe);
}

.bg-gradient-info {
    background: linear-gradient(45deg, #36b9cc, #1a8a9c);
}

.bg-gradient-warning {
    background: linear-gradient(45deg, #f6c23e, #dda20a);
}

.bg-gradient-danger {
    background: linear-gradient(45deg, #e74a3b, #be2617);
}

/* İstatistik kartları için özel stiller */
.stat-card {
    border: none;
    overflow: hidden;
}

.stat-card .card-body {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.stat-card h6 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.stat-card h2 {
    font-size: 2rem;
    font-weight: 700;
}

.stat-card .stat-icon {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    opacity: 0.2;
    transform: rotate(-15deg);
}

/* Tablo kartı için özel stiller */
.table-card .table th {
    background: rgba(0, 0, 0, 0.02);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-card .table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

/* Bildirim kartı için özel stiller */
.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.notification-item.unread {
    background-color: rgba(78, 115, 223, 0.05);
}

.notification-item p {
    font-size: 0.9rem;
    color: #2c3e50;
}

.notification-item small {
    font-size: 0.8rem;
    color: #6c757d;
}

.page-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
}

/* İkon animasyonu */
.stat-box:hover .stat-icon {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

/* Rapor Kartları için Özel Stiller */
.stat-box.bg-success {
    background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
}

/* Grafik Kartları */
.card.h-100 {
    height: 100% !important;
}

.card .card-header h6 i {
    margin-right: 8px;
    opacity: 0.8;
}

/* Grafik Container */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Rapor Sayfası İstatistik Kartları */
.reports-stats .stat-box {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reports-stats .stat-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.reports-stats .stat-box:hover .stat-icon {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.reports-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.reports-stats .stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Grafik Kartları Responsive */
@media (max-width: 768px) {
    .chart-container {
        height: 250px;
    }
    
    .reports-stats .stat-box {
        min-height: 120px;
    }
    
    .reports-stats .stat-number {
        font-size: 2rem;
    }
}

/* Tablo stilleri */
.table thead th {
    background: #f8f9fc;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

/* Progress bar */
.progress {
    background-color: rgba(0,0,0,0.05);
    margin-top: 0.25rem;
}

/* Rapor sayfası özel stilleri */
.section-title {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 1rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box .stat-number {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.stat-box .stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Renkli stat-box'lar için */
.stat-box.bg-secondary,
.stat-box.bg-info,
.stat-box.bg-warning,
.stat-box.bg-primary,
.stat-box.bg-success {
    color: #fff;
}

.stat-box.bg-secondary .stat-number,
.stat-box.bg-info .stat-number,
.stat-box.bg-warning .stat-number,
.stat-box.bg-primary .stat-number,
.stat-box.bg-success .stat-number,
.stat-box.bg-secondary .stat-label,
.stat-box.bg-info .stat-label,
.stat-box.bg-warning .stat-label,
.stat-box.bg-primary .stat-label,
.stat-box.bg-success .stat-label {
    color: #fff;
}

/* Tablo stilleri */
.table thead th {
    background: #f8f9fc;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-top: none;
}

.table tbody td {
    padding: 12px 20px;
    vertical-align: middle;
    border-top: 1px solid #f1f1f1;
}

/* Form kontrolleri */
.form-control {
    height: 38px;
    font-size: 14px;
    border: 1px solid #e1e5eb;
    border-radius: 4px;
    margin-left: 10px;
}

.form-control:focus {
    border-color: #3d5afe;
    box-shadow: 0 0 0 0.2rem rgba(61, 90, 254, 0.25);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .stat-box {
        margin-bottom: 15px;
    }
    
    .table td, .table th {
        padding: 10px 15px;
    }
}

/* Filtre kartı stilleri */
.filter-card {
    margin-bottom: 2rem;
}

.filter-card .card-body {
    padding: 1.5rem;
}

.filter-card .form-group {
    margin-bottom: 1rem;
}

.filter-card .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #495057;
}

.filter-card .form-control {
    height: 38px;
    font-size: 0.875rem;
}

.filter-buttons {
    margin-top: 1.85rem;
    display: flex;
    gap: 0.5rem;
}

.btn-filtrele, .btn-sifirla {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .filter-buttons {
        margin-top: 1rem;
    }
}

/* Kullanıcı durumu switch'i için stiller */
.custom-switch .custom-control-label::before {
    width: 2.5rem;
    height: 1.25rem;
    border-radius: 0.625rem;
}

.custom-switch .custom-control-label::after {
    width: calc(1.25rem - 4px);
    height: calc(1.25rem - 4px);
    border-radius: calc(0.625rem - 2px);
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.custom-switch .custom-control-input:not(:checked) ~ .custom-control-label::before {
    background-color: #e74a3b;
    border-color: #e74a3b;
}

/* Dark Theme */
body.dark-theme {
    background: #1a2035;
    color: #fff;
}

body.dark-theme #content {
    background: #1a2035;
}

body.dark-theme .navbar {
    background: #2d3748;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

body.dark-theme .card {
    background: #1f2940;
    color: #fff;
}

body.dark-theme .table {
    color: #fff;
}

body.dark-theme .table td,
body.dark-theme .table th {
    border-color: #2d3748;
}

body.dark-theme .modal-content {
    background: #1f2940;
    color: #fff;
}

/* Theme Switch Stili */
.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0.5rem;
    }

    .top-bar {
        padding: 0 0.5rem;
    }

    .user-menu .dropdown-toggle {
        padding: 0.25rem;
    }

    .user-menu .user-info {
        display: none;
    }

    .card {
        margin-bottom: 1rem;
    }

    .table-responsive {
        margin: 0 -0.5rem;
    }

    .filter-card .form-group {
        margin-bottom: 0.5rem;
    }

    .filter-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-filtrele, .btn-sifirla {
        width: 100%;
    }

    /* Form Kontrolleri */
    .card-body {
        padding: 15px;
    }

    /* Filtre Butonları */
    .d-flex.gap-2 {
        display: grid;
        grid-template-columns: 1fr;  /* 1fr 1fr yerine tek kolon */
        gap: 8px;
        margin: 8px;
    }

    .d-flex.gap-2 .btn {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    /* Sipariş Akışı Butonları */
    .card-header .d-inline-block.ml-2 {
        display: block !important;
        width: 100% !important;
        margin: 8px 0 !important;
    }

    .card-header .d-inline-block.ml-2 .btn {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 45px !important;
        margin: 0 !important;
    }
}

/* Admin menü düzeltmeleri */
.user-menu .dropdown-menu {
    position: absolute !important;
    transform: none !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 0.5rem;
}

.user-menu .dropdown-toggle::after {
    display: none;
}

.user-menu .dropdown-item {
    clear: both;
    white-space: nowrap;
}

/* Dropdown düzeltmeleri */
.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) !important;
}

.user-menu .dropdown-toggle {
    background: transparent;
    border: none;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.user-menu .dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
}

.user-menu .dropdown-toggle::after {
    display: none;
}

.user-menu .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    top: 100%;
    margin-top: 0.5rem;
    min-width: 200px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

/* Buton grupları için gap ayarı */
.d-flex.gap-2 {
    gap: 5px !important;
}

/* Alternatif olarak, eğer gap özelliği desteklenmiyorsa */
.d-flex.gap-2 > * {
    margin-right: 5px;
}

.d-flex.gap-2 > *:last-child {
    margin-right: 0;
}

/* Responsive durumlar için */
@media (max-width: 768px) {
    .d-flex.gap-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin: 8px;
    }
    
    /* Mobilde butonlar tam genişlikte olacaksa */
    .d-flex.gap-2.flex-column > * {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .d-flex.gap-2.flex-column > *:last-child {
        margin-bottom: 0;
    }
}

/* Login sayfası stilleri */
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    padding: 20px;
}

.login-logo {
    margin-bottom: 2rem;
}

.login-logo img {
    height: 60px;
    width: auto;
}

.login-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.login-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 1.25rem;
}

.login-form .form-control {
    height: 45px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
}

.login-form .form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.login-form .btn-login {
    height: 45px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    border: none;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.login-form .btn-login:hover {
    background: linear-gradient(135deg, #224abe 0%, #1a3a96 100%);
    transform: translateY(-1px);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-check-label {
    color: #718096;
    font-size: 0.9rem;
}

/* Login sayfası hata mesajı stilleri */
.login-card .alert-danger {
    background-color: rgba(231, 74, 59, 0.1);
    border: none;
    border-left: 4px solid #e74a3b;
    color: #e74a3b;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card .alert-danger i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.login-card .alert-danger span {
    flex: 1;
}

/* Dark theme için hata mesajı */
body.dark-theme .login-card .alert-danger {
    background-color: rgba(231, 74, 59, 0.15);
    color: #ff6b6b;
}

/* Responsive Ana Layout */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar Responsive Stiller */
.sidebar {
    width: 260px;
    min-height: 100vh;
    background: #2c3e50;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Mobil için Sidebar */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -260px;
    }

    .sidebar.active {
        left: 0;
    }

    .content-wrapper {
        margin-left: 0 !important;
        width: 100%;
    }

    /* Hamburger menü göster */
    .navbar-toggler {
        display: block !important;
    }
}

/* Content Area */
.content-wrapper {
    flex: 1;
    margin-left: 260px;
    transition: all 0.3s ease;
}

/* Dashboard Cards */
.stat-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bg-warning-light {
    background: rgba(255, 193, 7, 0.1);
}

.bg-info-light {
    background: rgba(13, 202, 240, 0.1);
}

.bg-success-light {
    background: rgba(25, 135, 84, 0.1);
}

/* Grafik Kartı */
.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem;
}

#ordersChart {
    height: 300px !important; /* Sabit yükseklik */
    max-height: 300px !important;
}

/* Performans Metrikleri */
.metric-item {
    padding: 0.5rem 0;
}

.progress {
    background-color: rgba(0,0,0,0.05);
}

/* Stok işlemleri sayfası için stiller */
.qr-code-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px dashed #ddd;
    border-radius: 8px;
}

.qr-scanner-container {
    text-align: center;
    padding: 20px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    background: #f8f9fa;
}

/* Stok raporları sayfası için stiller */
.stock-filters {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Dark mode için stiller */
body.dark-theme .qr-scanner-container {
    background: #2d3748;
    border-color: #4a5568;
}

body.dark-theme .stock-filters {
    background: #2d3748;
}

/* DataTables genel stil düzenlemeleri */
.dataTables_wrapper {
    padding: 1rem;
}

.dataTables_length, 
.dataTables_filter {
    margin-bottom: 1rem;
}

.dataTables_length label,
.dataTables_filter label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.dataTables_length select,
.dataTables_filter input {
    width: auto;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    margin: 0 0.5rem;
}

.dataTables_filter input {
    min-width: 200px;
}

/* Sayfalama butonları */
.dataTables_paginate {
    margin-top: 1rem;
}

.dataTables_paginate .paginate_button {
    padding: 0.375rem 0.75rem;
    margin-left: 2px;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    cursor: pointer;
}

.dataTables_paginate .paginate_button.current {
    background: #4e73df;
    color: #fff !important;
    border-color: #4e73df;
}

/* Dark tema için DataTables stilleri */
body.dark-theme .dataTables_length select,
body.dark-theme .dataTables_filter input {
    background-color: #2d3748;
    color: #fff;
    border-color: #4a5568;
}

body.dark-theme .dataTables_length label,
body.dark-theme .dataTables_filter label,
body.dark-theme .dataTables_info {
    color: #fff;
}

body.dark-theme .dataTables_paginate .paginate_button {
    background-color: #2d3748;
    color: #fff !important;
    border-color: #4a5568;
}

body.dark-theme .dataTables_paginate .paginate_button.current {
    background-color: #4e73df;
    border-color: #4e73df;
}

/* DataTables özel stilleri */
.dataTables_wrapper .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.dataTables_wrapper .left-col {
    flex: 1;
}


.dataTables_wrapper .right-col {
    flex: 1;
    text-align: right;
}

.dataTables_length select {
    min-width: 70px;
    height: 35px;
    padding: 0 10px;
    margin: 0 5px;
    border: 1px solid #d1d3e2;
    border-radius: 4px;
    background-color: #fff;
}

.dataTables_filter input {
    height: 35px;
    padding: 0 10px;
    margin-left: 10px;
    border: 1px solid #d1d3e2;
    border-radius: 4px;
    min-width: 200px;
}

/* Dark tema için DataTables stilleri */
body.dark-theme .dataTables_length select,
body.dark-theme .dataTables_filter input {
    background-color: #2d3748;
    color: #fff;
    border-color: #4a5568;
}

body.dark-theme .dataTables_length label,
body.dark-theme .dataTables_filter label {
    color: #fff;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    /* Üst Butonlar */
    .card-header {
        padding: 15px;
    }

    .card-header .d-flex {
        flex-direction: column;
        gap: 10px;
    }

    .card-header .btn {
        width: 100%;
        margin: 0;
        padding: 10px;
        font-size: 14px;
    }

    /* Form Kontrolleri */
    .card-body {
        padding: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-control {
        height: 40px;
        font-size: 14px;
    }

    /* Filtre Butonları */
    .d-flex.gap-2 {
        display: grid;
        grid-template-columns: 1fr;  /* 1fr 1fr yerine tek kolon */
        gap: 8px;
        margin: 8px;
    }

    .d-flex.gap-2 .btn {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    /* Sipariş Akışı Butonları */
    .card-header .d-inline-block.ml-2 {
        display: block !important;
        width: 100% !important;
        margin: 8px 0 !important;
    }

    .card-header .d-inline-block.ml-2 .btn {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 45px !important;
        margin: 0 !important;
    }

    /* DataTables Düzenlemeleri */
    .dataTables_wrapper .row {
        margin: 0;
    }

    .dataTables_length {
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
    }

    .dataTables_length label {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .dataTables_length select {
        width: auto;
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
    }

    .dataTables_filter {
        width: 100%;
        margin-bottom: 15px;
    }

    .dataTables_filter label {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dataTables_filter input {
        flex: 1;
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
        margin: 0;
    }

    /* Pagination */
    .dataTables_paginate {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
        padding: 10px 0;
        width: 100%;
    }

    .paginate_button {
        padding: 8px 12px !important;
        margin: 0 !important;
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Sayfa Bilgisi */
    .dataTables_info {
        text-align: center;
        width: 100%;
        margin: 10px 0;
        font-size: 14px;
    }

    /* Tablo Scroll */
    .table-responsive {
        margin: 0 -15px;
        padding: 0 15px;
    }
}

/* Sidebar Logo Link */
.logo-link {
    display: block;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.sidebar-logo {
    height: 35px;
    width: auto;
    display: block;
}

.sidebar-header h3 {
    margin: 0;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
} 