
 .asnavbar-container {
      position: fixed;
      bottom: 16px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      z-index: 1000;
      padding: 0 16px;
    }
    
    .asnavbar-bar {
      width: 100%;
      max-width: 450px;
      height: 75px; /* Yüksekliği arttırıldı */
      border-radius: var(--nav-radius);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      background-color: var(--bg-light);
      box-shadow: var(--shadow-light);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 0 24px;
      transition: all var(--animation-speed) ease;
    }
    
    /* Panel İçeriği */
    .musteripaneli-icerik {
        background-color: var(--musteripaneli-kart-arkaplan);
        border-radius: var(--musteripaneli-radius-buyuk);
        border: 2px solid #7c7c7c21;
        min-height: 300px;
        transition: var(--musteripaneli-gecis);
        border-radius: 8px;
    }
    
    /* ===== AÇILIR PANELLER ===== */
    .asnavbar-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      z-index: 2;
      height: 55px;
      width: 52px;
      padding-top: 8px;
      cursor: pointer;
      transition: all var(--animation-speed) ease;
      text-decoration: none;
      color: inherit;
      background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
      border-radius: 50%;
    }
    
    .asnavbar-item:active {
      transform: scale(0.92);
    }
    
    .asnavbar-icon {
      width: 22px;
      height: 22px;
      transition: all var(--animation-speed) var(--transition-bounce);
      color: var(--text-muted);
      margin-bottom: 6px;
    }
    
    /* SVG'ler için yeni stil eklendi */
    .asnavbar-icon svg {
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      width: 22px;
      height: 22px;
    }
    
    .asnavbar-icon svg path {
      stroke: currentColor;
      fill: none;
    }
    
    .asnavbar-icon svg path[fill="#292D32"] {
      fill: currentColor;
    }
    
    .asnavbar-label {
      font-size: 10px;
      font-weight: 500;
      color: var(--text-muted);
      margin-top: 2px;
      display: block;
      white-space: nowrap;
      text-align: center;
      opacity: 1;
      position: static;
      transform: none;
      transition: color var(--animation-speed) ease;
    }
    
    .asnavbar-item.active {
      background: radial-gradient(circle at center, var(--primary-glow) 0%, rgba(255,255,255,0) 75%);
    }
    
    .asnavbar-item.active .asnavbar-icon {
      color: var(--primary-light);
      filter: drop-shadow(0 2px 4px var(--primary-glow));
    }
    
    .asnavbar-item.active .asnavbar-label {
      color: var(--primary-light);
    }
    
    .asnavbar-cart-button {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      width: 48px;
      height: 48px;
      border-radius: var(--button-radius);
      background: var(--musterihphedar-primary);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
      z-index: 3;
      cursor: pointer;
      text-decoration: none;
      animation: asnavbar-float 3.5s ease-in-out infinite;
      transition: all 0.3s ease;
    }
    
    [data-theme="dark"] .asnavbar-cart-button {
      background: var(--musterihphedar-primary);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }
    
    .asnavbar-cart-button::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--button-radius);
      padding: 1.5px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    
    .asnavbar-cart-button:active {
      transform: translateX(-50%) scale(0.92);
      animation-play-state: paused;
    }
    
    .asnavbar-cart-icon {
      width: 20px;
      height: 20px;
      color: white;
      filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    }
    
    /* Font Awesome için stil */
    .asnavbar-cart-button i.fas {
      font-size: 20px;
      color: white;
      filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    }
    
    .asnavbar-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      min-width: 18px;
      height: 18px;
      border-radius: 9px;
      background-color: #ef4444;
      color: white;
      font-size: 10px;
      font-weight: 600;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 4px;
      box-shadow: 0 2px 4px rgba(239, 68, 68, 0.25);
      animation: asnavbar-pulseAnimation 2s infinite;
    }
    
    @keyframes asnavbar-pulseAnimation {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }
    
    /* Yukarı-aşağı animasyonu */
    @keyframes asnavbar-float {
      0% {
        transform: translateX(-50%) translateY(0px);
      }
      50% {
        transform: translateX(-50%) translateY(-5px);
      }
      100% {
        transform: translateX(-50%) translateY(0px);
      }
    }
    
    .asnavbar-handle {
      width: 36px;
      height: 4px;
      background-color: rgba(0, 0, 0, 0.07);
      border-radius: 2px;
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    [data-theme="dark"] .asnavbar-handle {
      background-color: rgba(255, 255, 255, 0.12);
    }
    
    /* Glow effect */
    .asnavbar-cart-button::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: var(--button-radius);
      background: var(--musterihphedar-primary);
      z-index: -1;
      opacity: 0.2;
      filter: blur(6px);
      animation: asnavbar-glowPulse 2s infinite;
    }
    
    [data-theme="dark"] .asnavbar-cart-button::after {
      background: var(--musterihphedar-primary);
      opacity: 0.25;
    }
    
    @keyframes asnavbar-glowPulse {
      0% {
        opacity: 0.2;
        transform: scale(1);
      }
      50% {
        opacity: 0.3;
        transform: scale(1.15);
      }
      100% {
        opacity: 0.2;
        transform: scale(1);
      }
    }
    
    /* İkon için hover efektleri */
    .asnavbar-item:hover .asnavbar-icon {
      color: var(--primary-dark);
      transition: all 0.2s ease;
    }
    
    /* iPhone X ve daha yenisi için alt tarafta güvenli alan */
    @supports (padding: max(0px)) {
      .asnavbar-container {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
      }
    }
    
    /* Responsive ayarlamalar */
    @media (max-width: 360px) {
      .asnavbar-bar {
        height: 75px;
        max-width: 320px;
        padding: 0 20px;
      }
      
      .asnavbar-item {
        width: 46px;
        height: 55px;
      }
      
      .asnavbar-icon {
        width: 20px;
        height: 20px;
      }
      
      .asnavbar-label {
        font-size: 9px;
      }
      
      .asnavbar-cart-button {
        width: 44px;
        height: 44px;
        top: -14px;
      }
      
      .asnavbar-cart-icon,
      .asnavbar-cart-button i.fas {
        width: 18px;
        height: 18px;
        font-size: 18px;
      }
    }
    
    /* Sadece mobil ve tablet cihazlarda göster */
    @media (min-width: 1025px) {
      .asnavbar-container {
        display: none;
      }
    }
    
    /* Müşteri Paneli Stilleri */
    /* ===== DEĞIŞKEN AYARLARI ===== */
    :root {
        /* Ana Renkler - Açık Tema */
        --musteripaneli-ana-renk: var(--musterihphedar-primary);
        --musteripaneli-ana-renk-acik: #6366f1;
        --musteripaneli-ana-renk-koyu: var(--musterihphedar-warning-bg);
        --musteripaneli-ikincil-renk: #0ea5e9;
        --musteripaneli-ikincil-renk-koyu: #0284c7;
        --musteripaneli-basari-renk: #10b981;
        --musteripaneli-uyari-renk: #f59e0b;
        --musteripaneli-tehlike-renk: #ef4444;
        
        /* Arkaplan - Açık Tema */
        --musteripaneli-arkaplan: var(--musterihphedar-bg-color);
        --musteripaneli-koyu-arkaplan: #1e293b;
        --musteripaneli-daha-koyu-arkaplan: #0f172a;
        
        /* Yazı Renkleri - Açık Tema */
        --musteripaneli-acik-yazi: var(--musterihphedar-subtitle-color);
        --musteripaneli-koyu-yazi: var(--musterihphedar-title-color);
        
        /* Bileşen Renkleri - Açık Tema */
        --musteripaneli-kart-arkaplan: var(--musterihphedar-card-bg);
        --musteripaneli-kart-arkaplan-hafif: var(--musterihphedar-hover-bg);
        --musteripaneli-hover-arkaplan: var(--musterihphedar-hover-bg);
        --musteripaneli-kenar-renk: var(--musterihphedar-border-color);
        
        /* Ortak Stiller */
        --musteripaneli-golge-kucuk: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
        --musteripaneli-golge-orta: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        --musteripaneli-golge-buyuk: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        --musteripaneli-radius-kucuk: 0.375rem;
        --musteripaneli-radius-orta: 0.5rem;
        --musteripaneli-radius-buyuk: 0.75rem;
        --musteripaneli-gecis: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        
        /* Kenar Çubuğu */
        --musteripaneli-kenar-cubugu-genislik: 280px;
    }
    
    /* Koyu Tema */
    [data-theme="dark"] {
        /* Arkaplan - Koyu Tema */
        --musteripaneli-arkaplan: #0f172a;
        --musteripaneli-koyu-arkaplan: #1e293b;
        --musteripaneli-daha-koyu-arkaplan: #0f172a;
        
        /* Yazı Renkleri - Koyu Tema */
        --musteripaneli-acik-yazi: #94a3b8;
        --musteripaneli-koyu-yazi: #f8fafc;
        
        /* Bileşen Renkleri - Koyu Tema */
        --musteripaneli-kart-arkaplan: #1e293b;
        --musteripaneli-kart-arkaplan-hafif: #263449;
        --musteripaneli-hover-arkaplan: #334155;
        --musteripaneli-kenar-renk: #334155;
        
        /* Gölgeler - Koyu Tema */
        --musteripaneli-golge-kucuk: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
        --musteripaneli-golge-orta: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
        --musteripaneli-golge-buyuk: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    }
    
    /* Normal headerları gizle */
    .musterihphedar-main-header:not(.musterihphedar-sticky),
    .musterihphedar-mobile-header:not(.musterihphedar-sticky),
    .musterihphedar-top-bar {
        display: none !important;
    }
    
    /* Sadece masaüstünde sticky header'ı göster */
    @media (min-width: 992px) {
        .musterihphedar-main-header.musterihphedar-sticky {
            display: block !important;
            position: fixed !important;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
    }
    
    /* Mobil cihazlarda masaüstü sticky header'ı gizle */
    @media (max-width: 991px) {
        .musterihphedar-main-header.musterihphedar-sticky {
            display: none !important;
        }
    }
    
    /* Mobil sticky header'ı her cihazda gizli tut */
    .musterihphedar-mobile-header.musterihphedar-sticky {
        display: none !important;
    }
    
    /* Mobil menü kapatma butonu */
    .musteripaneli-mobil-kapat {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        display: none; /* Düzeltme: Başlangıçta gizli */
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        z-index: 2;
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-mobil-kapat:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    
    .musteripaneli-mobil-kapat svg {
        width: 16px;
        height: 16px;
    }
    
    body {
    }
    
    /* ===== SADECE MASAÜSTÜ İÇİN ===== */
    @media (min-width: 1024px) {
        .musteripaneli-konteyner {
            max-width: 85vw;
        }
    }
    
    /* ===== TEMEL DÜZEN ===== */
    .musteripaneli-konteyner {
        margin: 0 auto;
        padding: 1.25rem;
        transition: var(--musteripaneli-gecis);
    }
    
    @media (min-width: 1024px) {
        .musteripaneli-ana-duzen {
            display: flex;
            gap: 1.5rem;
            min-height: calc(100vh - 40px);
            position: relative;
        }
    }
    
    /* ===== KENAR ÇUBUĞU - TEMA ENTEGRASYONU YAPILDI ===== */
    .musteripaneli-kenar-cubugu {
        width: var(--musteripaneli-kenar-cubugu-genislik);
        background: var(--musteripaneli-card-bg); /* Düzeltme: Tema değişkeni kullanıldı */
        border-radius: var(--musteripaneli-radius-buyuk);
        box-shadow: var(--musteripaneli-golge-orta);
        overflow: hidden;
        transition: var(--musteripaneli-gecis);
        position: relative;
        z-index: 100;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        height: calc(100vh - 2.5rem);
        position: sticky;
        top: 1.25rem;
        border: 1px solid var(--musteripaneli-kenar-renk); /* Düzeltme: Tema değişkeni kullanıldı */
        background: #fafcff;
    }
    
    [data-theme="dark"] .musteripaneli-kenar-cubugu {
        background: var(--musteripaneli-koyu-arkaplan);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .musteripaneli-kenar-cubugu:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0; /* Düzeltme: Aydınlık temada gizli */
        background: linear-gradient(180deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
        border-radius: var(--musteripaneli-radius-buyuk);
        transition: opacity 0.3s ease;
    }
    
    [data-theme="dark"] .musteripaneli-kenar-cubugu:before {
        opacity: 0.7; /* Düzeltme: Karanlık temada görünür */
    }

    .musteripaneli-kenar-baslik {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid var(--musteripaneli-kenar-renk); /* Düzeltme: Tema değişkeni kullanıldı */
    }

    [data-theme="dark"] .musteripaneli-kenar-baslik {
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    
    .musteripaneli-logo {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--musterihphedar-primary) 0%, color-mix(in srgb, var(--musterihphedar-primary) 80%, #ffffff) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: white;
        font-size: 1.25rem;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(var(--musterihphedar-primary-rgb), 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .musteripaneli-logo:after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to bottom right, 
            rgba(255, 255, 255, 0.2) 0%, 
            rgba(255, 255, 255, 0) 80%
        );
        transform: rotate(45deg);
        animation: shineEffect 3s infinite;
    }
    
    @keyframes shineEffect {
        0% { transform: rotate(45deg) translateX(-100%); }
        100% { transform: rotate(45deg) translateX(100%); }
    }
    
    .musteripaneli-baslik h1 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--musteripaneli-koyu-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
        margin-bottom: 0.125rem;
    }
    
    .musteripaneli-baslik p {
        font-size: 0.75rem;
        color: var(--musteripaneli-acik-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
    }

    [data-theme="dark"] .musteripaneli-baslik h1 {
        color: white;
    }

    [data-theme="dark"] .musteripaneli-baslik p {
        color: rgba(255, 255, 255, 0.6);
    }
    
    /* Arama Çubuğu */
    .musteripaneli-arama-alani {
        margin: 1rem 1rem 0.75rem;
        position: relative;
    }
    
    .musteripaneli-arama-input {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        background: var(--musterihphedar-input-bg); /* Düzeltme: Tema değişkeni kullanıldı */
        border: 1px solid var(--musteripaneli-kenar-renk); /* Düzeltme: Tema değişkeni kullanıldı */
        border-radius: 1rem;
        color: var(--musteripaneli-koyu-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
        font-size: 0.875rem;
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-arama-input::placeholder {
        color: var(--musteripaneli-acik-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
    }

    [data-theme="dark"] .musteripaneli-arama-input {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

    [data-theme="dark"] .musteripaneli-arama-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .musteripaneli-arama-input:focus {
        background: var(--musterihphedar-hover-bg); /* Düzeltme: Tema değişkeni kullanıldı */
        outline: none;
        border-color: var(--musterihphedar-primary);
        box-shadow: 0 0 0 2px rgba(var(--musterihphedar-primary-rgb),0.3);
    }
    
    [data-theme="dark"] .musteripaneli-arama-input:focus {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 2px rgba(99, 102, 241,0.3);
    }

    .musteripaneli-arama-ikon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--musteripaneli-acik-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
        font-size: 0.875rem;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    [data-theme="dark"] .musteripaneli-arama-ikon {
        color: rgba(255, 255, 255, 0.5);
    }
    
    /* Bakiye Kartı - Sol Menüde */
    .musteripaneli-bakiye-panel {
        margin: 0.5rem 1rem 1.5rem;
        padding: 1.25rem;
        background: linear-gradient(135deg, rgba(var(--musterihphedar-primary-rgb), 0.1), rgba(var(--musterihphedar-primary-rgb), 0.15));
        border-radius: var(--musteripaneli-radius-orta);
        border: 1px solid rgba(var(--musterihphedar-primary-rgb), 0.2);
        color: var(--musteripaneli-koyu-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
        position: relative;
        overflow: hidden;
    }
    
    [data-theme="dark"] .musteripaneli-bakiye-panel {
    background: linear-gradient(135deg, rgba(var(--musterihphedar-primary-rgb), 0.1), rgba(var(--musterihphedar-primary-rgb), 0.15));        border-color: rgba(99, 102, 241, 0.2);
        color: white;
    }

    .musteripaneli-bakiye-panel:before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(var(--musterihphedar-primary-rgb), 0.3), transparent 70%);
        top: -70px;
        right: -70px;
        border-radius: 50%;
        z-index: 0;
    }
    
    .musteripaneli-bakiye-baslik {
        font-size: 0.875rem;
        color: var(--musteripaneli-acik-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }
    [data-theme="dark"] .musteripaneli-bakiye-baslik {
        color: rgba(255, 255, 255, 0.7);
    }

    .musteripaneli-bakiye-baslik svg {
        color:var(--musterihphedar-primary);
        width: 18px;
        height: 18px;
    }
    
    .musteripaneli-bakiye-deger {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--musteripaneli-koyu-yazi); /* Düzeltme: Tema değişkeni kullanıldı */
        margin-bottom: 1rem;
        position: relative;
    }
    [data-theme="dark"] .musteripaneli-bakiye-deger {
        color: white;
    }

    .musteripaneli-bakiye-butonlar {
        display: flex;
        gap: 0.625rem;
        position: relative;
    }
    
    .musteripaneli-bakiye-buton {
        flex: 1;
        padding: 0.5rem;
        text-align: center;
        font-size: 0.8125rem;
        font-weight: 500;
        border-radius: var(--musteripaneli-radius-kucuk);
        background: rgb(255 255 255);
        color: var(--musterihphedar-primary); /* Düzeltme */
        transition: var(--musteripaneli-gecis);
        cursor: pointer;
        border: none;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.375rem;
        position: relative;
        overflow: hidden;
    }
    
    .musteripaneli-bakiye-buton:hover {
        background: rgba(var(--musterihphedar-primary-rgb), 0.15); /* Düzeltme */
        transform: translateY(-2px);
    }
    
    [data-theme="dark"] .musteripaneli-bakiye-buton {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    [data-theme="dark"] .musteripaneli-bakiye-buton:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .musteripaneli-bakiye-buton svg {
        width: 14px;
        height: 14px;
    }
    
    .musteripaneli-bakiye-buton:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .musteripaneli-bakiye-buton:hover:after {
        animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%); opacity: 0; }
        20% { opacity: 0.3; }
        60% { opacity: 0.3; }
        100% { transform: translateX(100%); opacity: 0; }
    }
    
    /* Nav Konteyner */
    .musteripaneli-nav-konteyner {
        flex: 1;
        overflow-y: auto;
        padding: 0.75rem 0.75rem 1.25rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
        position: relative;
    }
    
    [data-theme="dark"] .musteripaneli-nav-konteyner {
        scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    }

    .musteripaneli-nav-konteyner::-webkit-scrollbar {
        width: 4px;
    }
    
    .musteripaneli-nav-konteyner::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .musteripaneli-nav-konteyner::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    [data-theme="dark"] .musteripaneli-nav-konteyner::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .musteripaneli-nav-bolum {
        margin-bottom: 1.5rem;
    }
    
    .musteripaneli-nav-bolum-baslik {
        font-size: 0.75rem;
        color: var(--musteripaneli-acik-yazi); /* Düzeltme */
        padding: 0 0.75rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    [data-theme="dark"] .musteripaneli-nav-bolum-baslik {
        color: rgba(255, 255, 255, 0.5);
    }

    .musteripaneli-menu-container {
        padding: 0;
        list-style: none;
    }
    
    .musteripaneli-menu-item {
        margin-bottom: 0.125rem;
    }
    
    .musteripaneli-menu-link {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        color: var(--musteripaneli-koyu-yazi); /* Düzeltme */
        text-decoration: none;
        transition: var(--musteripaneli-gecis);
        position: relative;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 0.75rem;
    }
    
    [data-theme="dark"] .musteripaneli-menu-link {
        color: rgba(255, 255, 255, 0.75);
    }

    .musteripaneli-menu-link:hover {
        color: var(--musterihphedar-primary); /* Düzeltme */
        background-color: rgba(var(--musterihphedar-primary-rgb), 0.08);
        transform: translateX(4px);
    }

    [data-theme="dark"] .musteripaneli-menu-link:hover {
        color: white;
        background-color: rgba(255, 255, 255, 0.08);
    }
    
    .musteripaneli-menu-link.aktif {
        color: white;
        background: linear-gradient(to right, var(--musterihphedar-primary), var(--musteripaneli-ana-renk-acik));
        font-weight: 500;
        box-shadow: 0 4px 10px rgba(var(--musterihphedar-primary-rgb), 0.2);
    }
    
    [data-theme="dark"] .musteripaneli-menu-link.aktif {
         background: linear-gradient(to right, rgba(79, 70, 229, 0.7), rgba(79, 70, 229, 0.4));
         box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
    }

    .musteripaneli-menu-link.aktif:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--musterihphedar-primary);
        border-radius: 0 4px 4px 0;
    }

    [data-theme="dark"] .musteripaneli-menu-link.aktif:before {
        background: white;
    }
    
    .musteripaneli-menu-ikon {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 1rem;
        color: currentColor;
        opacity: 0.9;
        font-size: 1.125rem;
        text-align: center;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-menu-ikon svg {
        width: 20px;
        height: 20px;
    }
    
    .musteripaneli-menu-link:hover .musteripaneli-menu-ikon {
        transform: scale(1.1);
    }
    
    .musteripaneli-bildirim-sayi {
        margin-left: auto;
        background: var(--musteripaneli-tehlike-renk);
        color: white;
        border-radius: 1rem;
        padding: 0.125rem 0.5rem;
        font-size: 0.75rem;
        font-weight: 500;
        min-width: 1.5rem;
        text-align: center;
        box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
    }
    
    /* Alt Menü */
    .musteripaneli-alt-menu {
        list-style: none;
        padding-left: 2.5rem;
        margin-top: 0.25rem;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    }
    
    .musteripaneli-menu-item.acik .musteripaneli-alt-menu {
        max-height: 500px;
        transition: max-height 0.5s ease-in-out;
    }
    
    .musteripaneli-alt-menu-toggle {
        cursor: pointer;
    }
    
    .musteripaneli-alt-menu-ok {
        margin-left: auto;
        transition: transform 0.3s ease;
        font-size: 0.75rem;
        opacity: 0.7;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .musteripaneli-alt-menu-ok svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }
    
    .musteripaneli-alt-menu-ok.acik svg {
        transform: rotate(180deg);
    }
    
    /* Kullanıcı Bilgisi */
    .musteripaneli-kenar-altbilgi {
        padding: 1rem 1.25rem;
        border-top: 1px solid var(--musteripaneli-kenar-renk); /* Düzeltme */
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--musterihphedar-hover-bg); /* Düzeltme */
    }
    
    [data-theme="dark"] .musteripaneli-kenar-altbilgi {
        border-top-color: rgba(255, 255, 255, 0.08);
        background: rgba(15, 23, 42, 0.4);
    }

    .musteripaneli-kullanici-bilgi {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .musteripaneli-kullanici-avatar {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 12px;
        background: var(--musterihphedar-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: white;
        position: relative;
        font-size: 0.875rem;
        box-shadow: 0 3px 6px rgba(var(--musterihphedar-primary-rgb), 0.3);
    }
    
    .musteripaneli-kullanici-avatar::after {
        content: '';
        position: absolute;
        width: 0.5rem;
        height: 0.5rem;
        background-color: var(--musteripaneli-basari-renk);
        border-radius: 50%;
        bottom: -2px;
        right: -2px;
        border: 2px solid var(--musterihphedar-hover-bg); /* Düzeltme */
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    }

    [data-theme="dark"] .musteripaneli-kullanici-avatar::after {
        border-color: var(--musteripaneli-koyu-arkaplan);
    }
    
    .musteripaneli-kullanici-detay {
        display: flex;
        flex-direction: column;
    }
    
    .musteripaneli-kullanici-isim {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--musteripaneli-koyu-yazi); /* Düzeltme */
    }
    [data-theme="dark"] .musteripaneli-kullanici-isim {
        color: white;
    }

    .musteripaneli-kullanici-rol {
        font-size: 0.75rem;
        color: var(--musteripaneli-acik-yazi); /* Düzeltme */
    }
    [data-theme="dark"] .musteripaneli-kullanici-rol {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .musteripaneli-cikis-btn {
        width: 2.25rem;
        height: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(239, 68, 68, 0.1);
        border-radius: 8px;
        color: rgba(239, 68, 68, 0.8);
        cursor: pointer;
        transition: var(--musteripaneli-gecis);
        border: none;
    }
    
    .musteripaneli-cikis-btn:hover {
        background-color: rgba(239, 68, 68, 0.2);
        color: rgba(239, 68, 68, 1);
        transform: translateY(-2px);
    }
    
    .musteripaneli-cikis-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* ===== ANA İÇERİK ALANI ===== */
    .musteripaneli-ana-icerik {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1.3rem;
    }
    
    /* Üst Başlık - Yatay Menü */
    .musteripaneli-ust-baslik {
        background: var(--musteripaneli-kart-arkaplan);
        border-radius: var(--musteripaneli-radius-buyuk);
        box-shadow: var(--musteripaneli-golge-kucuk);
        position: sticky;
        top: 1.25rem;
        z-index: 10;
        overflow: visible;
        border: 1px solid var(--musteripaneli-kenar-renk);
        color: var(--musteripaneli-koyu-yazi);
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-ust-menu {
        display: flex;
        align-items: center;
        height: 4rem;
    }
    
    .musteripaneli-mobil-menu-toggle {
        display: none;
        width: 2.5rem;
        height: 2.5rem;
        margin-left: 0.75rem;
        background-color: transparent;
        color: var(--musteripaneli-koyu-yazi);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        border: none;
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-mobil-menu-toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .musteripaneli-mobil-menu-toggle:hover {
        color: var(--musteripaneli-ana-renk);
    }
    
    /* Üst Menü */
    .musteripaneli-ust-menu-container {
        flex: 1;
        overflow: hidden;
        height: 100%;
    }
    
    .musteripaneli-ust-menu-liste {
        display: flex;
        align-items: center;
        list-style-type: none;
        margin: 0;
        padding: 0;
        height: 100%;
    }
    
    .musteripaneli-ust-menu-item {
        position: relative;
        height: 100%;
    }
    
    .musteripaneli-ust-menu-link {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 1.5rem;
        color: var(--musteripaneli-acik-yazi);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: var(--musteripaneli-gecis);
        position: relative;
        gap: 0.5rem;
    }
    
    .musteripaneli-ust-menu-link:hover {
        color: var(--musteripaneli-koyu-yazi);
    }
    
    .musteripaneli-ust-menu-link.aktif {
        color: var(--musteripaneli-ana-renk);
        font-weight: 600;
    }
    
    .musteripaneli-ust-menu-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* Üst Menü İkonları */
    .musteripaneli-ust-araclar {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1.5rem;
        height: 100%;
        position: relative;
    } 
    
    .musteripaneli-ust-arac-buton {
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(var(--musterihphedar-primary-rgb), 0.08);
        color: var(--hesabim-info);
        border-radius: 8px;
        border: 1px solid var(--musterihphedar-primary-rgb);
        cursor: pointer;
        position: relative; 
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-ust-arac-buton svg {
        width: 20px;
        height: 20px;
    }
    
    .musteripaneli-bildirim-rozet {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background-color: var(--musterihphedar-red-color);
    color: white;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    border: 2px solid var(--musterihphedar-header-bg);
    transition: border-color 0.3s ease;
}
    
    .musteripaneli-tema-ikon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: var(--musteripaneli-gecis);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .musteripaneli-tema-ikon svg {
        width: 20px;
        height: 20px;
    }
    
    .musteripaneli-tema-ikon.gunes {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0);
    }
    
    .musteripaneli-tema-ikon.ay {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(90deg);
    }
    
    [data-theme="dark"] .musteripaneli-tema-ikon.gunes {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    
    [data-theme="dark"] .musteripaneli-tema-ikon.ay {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0);
    }
    
    /* Karşılama Bölümü */
    .musteripaneli-karsilama {
        background: var(--musteripaneli-kart-arkaplan);
        border-radius: var(--musteripaneli-radius-buyuk);
        box-shadow: var(--musteripaneli-golge-kucuk);
        padding: 1.5rem 2rem;
        border: 1px solid var(--musteripaneli-kenar-renk);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        color: var(--musteripaneli-koyu-yazi);
        position: relative;
        overflow: hidden;
        transition: var(--musteripaneli-gecis);
    }
    
    /* Dekoratif arka plan deseni */
    .musteripaneli-karsilama::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(var(--musterihphedar-primary-rgb), 0.08), transparent 70%);
        z-index: 0;
        border-radius: 50%;
    }
    
    .musteripaneli-karsilama-sol {
        max-width: 60%;
        position: relative;
        z-index: 1;
    }
    
    .musteripaneli-selamlama {
        font-size: 0.875rem;
        color: var(--musteripaneli-acik-yazi);
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .musteripaneli-kullanici-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .musteripaneli-kullanici {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--musteripaneli-koyu-yazi);
        position: relative;
    }
    
    .musteripaneli-onay-ikon {
        color: var(--musteripaneli-basari-renk);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }
    
    .musteripaneli-onay-ikon svg {
        width: 18px;
        height: 18px;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }
    
    .musteripaneli-son-giris {
        font-size: 0.75rem;
        color: var(--musteripaneli-acik-yazi);
        position: relative;
        z-index: 1;
        align-items: center;
        gap: 0.375rem;
    }
    
    .musteripaneli-son-giris svg {
        width: 14px;
        height: 14px;
    }
    
    .musteripaneli-karsilama-sag {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }
    
    .musteripaneli-hizli-islem {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        padding: 0.625rem 1.25rem;
        border-radius: 0.75rem;
        transition: var(--musteripaneli-gecis);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.875rem;
        position: relative;
        overflow: hidden;
    }
    
    .musteripaneli-hizli-islem:first-child {
        background: var(--musterihphedar-primary)
;
        color: white;
    }
    
    .musteripaneli-hizli-islem:first-child:hover {
        box-shadow: 0 4px 10px rgba(var(--musterihphedar-primary-rgb), 0.3);
        transform: translateY(-3px);
    }
    
    .musteripaneli-hizli-islem:last-child {
        background-color: rgba(var(--musterihphedar-primary-rgb), 0.08);
        color: var(--hesabim-info);
        border: 1px solid var(--musterihphedar-primary-rgb);
    }
    
    .musteripaneli-hizli-islem svg {
        width: 16px;
        height: 16px;
    }
    
    .musteripaneli-hizli-islem:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: translateX(-100%);
        transition: 0.5s;
    }
    
    .musteripaneli-hizli-islem:hover:after {
        transform: translateX(100%);
    }
    
    
    /* Bildirim Paneli - DÜZELTILMIŞ POZİSYON */
    .musteripaneli-bildirim-panel {
        position: absolute;
        top: 100%;
        right: 0;
        width: 350px;
        background: var(--musteripaneli-kart-arkaplan);
        border-radius: var(--musteripaneli-radius-orta);
        box-shadow: var(--musteripaneli-golge-buyuk);
        z-index: 100;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--musteripaneli-gecis);
        border: 1px solid var(--musteripaneli-kenar-renk);
        margin-top: 0.75rem;
        color: var(--musteripaneli-koyu-yazi);
    }
    
    .musteripaneli-bildirim-buton-wrapper {
        position: relative;
    }
    
    .musteripaneli-bildirim-panel.aktif {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .musteripaneli-bildirim-baslik {
        padding: 1.25rem;
        border-bottom: 1px solid var(--musteripaneli-kenar-renk);
        background: var(--musteripaneli-kart-arkaplan-hafif);
    }
    
    .musteripaneli-bildirim-baslik h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--musteripaneli-koyu-yazi);
        margin-bottom: 0.25rem;
    }
    
    .musteripaneli-bildirim-baslik p {
        font-size: 0.875rem;
        color: var(--musteripaneli-acik-yazi);
    }
    
    .musteripaneli-bildirim-icerik {
        max-height: 400px;
        overflow-y: auto;
        padding: 1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--musteripaneli-kenar-renk) transparent;
    }
    
    .musteripaneli-bildirim-icerik::-webkit-scrollbar {
        width: 4px;
    }
    
    .musteripaneli-bildirim-icerik::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .musteripaneli-bildirim-icerik::-webkit-scrollbar-thumb {
        background-color: var(--musteripaneli-kenar-renk);
        border-radius: 20px;
    }
    
    .musteripaneli-bildirim-oge {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--musteripaneli-radius-kucuk);
        transition: var(--musteripaneli-gecis);
        margin-bottom: 0.75rem;
        background-color: var(--musteripaneli-kart-arkaplan-hafif);
        border-left: 3px solid transparent;
    }
    
    .musteripaneli-bildirim-oge:hover {
        background-color: var(--musteripaneli-hover-arkaplan);
        transform: translateY(-2px);
        box-shadow: var(--musteripaneli-golge-kucuk);
    }
    
    .musteripaneli-bildirim-oge-ikon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }
    
    .musteripaneli-bildirim-oge-ikon svg {
        width: 18px;
        height: 18px;
    }
    
    .musteripaneli-bildirim-oge-ikon.basarili {
        background: linear-gradient(135deg, #10b981, #059669);
        box-shadow: 0 3px 6px rgba(16, 185, 129, 0.3);
    }
    
.musteripaneli-bildirim-oge-ikon.uyari {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        box-shadow: 0 3px 6px rgba(245, 158, 11, 0.3);
    }
    
    .musteripaneli-bildirim-oge-ikon.bilgi {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        box-shadow: 0 3px 6px rgba(59, 130, 246, 0.3);
    }
    
    .musteripaneli-bildirim-oge-icerik {
        flex: 1;
    }
    
    .musteripaneli-bildirim-oge-icerik h5 {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--musteripaneli-koyu-yazi);
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    .musteripaneli-bildirim-oge-zaman {
        font-size: 0.75rem;
        color: var(--musteripaneli-acik-yazi);
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }
    
    .musteripaneli-bildirim-oge-zaman svg {
        width: 14px;
        height: 14px;
    }
    
    .musteripaneli-bildirim-oge.okunmus {
        opacity: 0.6;
    }
    
    .musteripaneli-bildirim-bos {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .musteripaneli-bildirim-bos svg {
        width: 48px;
        height: 48px;
        margin-bottom: 1.5rem;
        color: var(--musteripaneli-kenar-renk);
        opacity: 0.7;
    }
    
    .musteripaneli-bildirim-bos h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        color: var(--musteripaneli-koyu-yazi);
    }
    
    .musteripaneli-bildirim-bos p {
        font-size: 0.875rem;
        color: var(--musteripaneli-acik-yazi);
        max-width: 20rem;
        margin: 0 auto;
    }
    
    .musteripaneli-bildirim-altbilgi {
        padding: 1rem;
        border-top: 1px solid var(--musteripaneli-kenar-renk);
        background: var(--musteripaneli-kart-arkaplan-hafif);
        text-align: center;
    }
    
    .musteripaneli-bildirim-altbilgi a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.625rem 1.25rem;
        background: linear-gradient(to right, var(--musterihphedar-primary), var(--musteripaneli-ana-renk-acik));
        color: white;
        border-radius: 0.75rem;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: var(--musteripaneli-gecis);
        position: relative;
        overflow: hidden;
    }
    
    .musteripaneli-bildirim-altbilgi a svg {
        width: 16px;
        height: 16px;
    }
    
    .musteripaneli-bildirim-altbilgi a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(var(--musterihphedar-primary-rgb), 0.3);
    }
    
    .musteripaneli-bildirim-altbilgi a:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: translateX(-100%);
        transition: 0.5s;
    }
    
    .musteripaneli-bildirim-altbilgi a:hover:after {
        transform: translateX(100%);
    }
    
    /* Kullanıcı Açılır Menü - DÜZELTILMIŞ POZİSYON */
    .musteripaneli-kullanici-buton-wrapper {
        position: relative;
    }
    
    .musteripaneli-kullanici-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 280px;
        background: var(--musteripaneli-kart-arkaplan);
        border-radius: var(--musteripaneli-radius-orta);
        box-shadow: var(--musteripaneli-golge-buyuk);
        z-index: 100;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--musteripaneli-gecis);
        border: 1px solid var(--musteripaneli-kenar-renk);
        margin-top: 0.75rem;
        color: var(--musteripaneli-koyu-yazi);
    }
    
    .musteripaneli-kullanici-menu.aktif {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .musteripaneli-kullanici-menu-baslik {
        padding: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--musteripaneli-kenar-renk);
        background: var(--musteripaneli-kart-arkaplan-hafif);
    }
    
    .musteripaneli-kullanici-avatar-buyuk {
        width: 5rem;
        height: 5rem;
        border-radius: 1rem;
        background: var(--musterihphedar-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 600;
        color: white;
        margin: 0 auto 1rem;
        position: relative;
        box-shadow: 0 4px 10px rgba(var(--musterihphedar-primary-rgb), 0.3);
    }
    
    .musteripaneli-kullanici-avatar-buyuk::after {
        content: '';
        position: absolute;
        width: 1rem;
        height: 1rem;
        background-color: var(--musteripaneli-basari-renk);
        border-radius: 50%;
        bottom: -3px;
        right: -3px;
        border: 3px solid var(--musteripaneli-kart-arkaplan);
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    }
    
    .musteripaneli-kullanici-menu-baslik h3 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--musteripaneli-koyu-yazi);
    }
    
    .musteripaneli-kullanici-menu-baslik p {
        font-size: 0.875rem;
        color: var(--musteripaneli-acik-yazi);
    }
    
    .musteripaneli-kullanici-menu-icerik {
        padding: 1rem;
    }
    
    .musteripaneli-kullanici-menu-oge {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 0.875rem;
        border-radius: var(--musteripaneli-radius-kucuk);
        transition: var(--musteripaneli-gecis);
        text-decoration: none;
        color: var(--musteripaneli-koyu-yazi);
        margin-bottom: 0.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .musteripaneli-kullanici-menu-oge:hover {
        background-color: var(--musteripaneli-hover-arkaplan);
        transform: translateX(5px);
    }
    
    .musteripaneli-kullanici-menu-oge-ikon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.75rem;
        background: linear-gradient(135deg, rgba(var(--musterihphedar-primary-rgb), 0.1), rgba(var(--musterihphedar-primary-rgb), 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--musteripaneli-ana-renk);
        flex-shrink: 0;
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-kullanici-menu-oge-ikon svg {
        width: 18px;
        height: 18px;
    }
    
    .musteripaneli-kullanici-menu-oge:hover .musteripaneli-kullanici-menu-oge-ikon {
        transform: scale(1.1);
        background: linear-gradient(135deg, rgba(var(--musterihphedar-primary-rgb), 0.2), rgba(var(--musterihphedar-primary-rgb), 0.3));
    }
    
    .musteripaneli-kullanici-menu-oge-icerik h4 {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--musteripaneli-koyu-yazi);
    }
    
    .musteripaneli-kullanici-menu-altbilgi {
        padding: 1rem;
        border-top: 1px solid var(--musteripaneli-kenar-renk);
        background: var(--musteripaneli-kart-arkaplan-hafif);
        text-align: center;
    }
    
    .musteripaneli-kullanici-menu-altbilgi a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.625rem 1.25rem;
        background-color: rgba(239, 68, 68, 0.1);
        color: var(--musteripaneli-tehlike-renk);
        border-radius: 0.75rem;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: var(--musteripaneli-gecis);
        border: 1px solid rgba(239, 68, 68, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .musteripaneli-kullanici-menu-altbilgi a svg {
        width: 16px;
        height: 16px;
    }
    
    .musteripaneli-kullanici-menu-altbilgi a:hover {
        background-color: rgba(239, 68, 68, 0.2);
        transform: translateY(-2px);
    }
    
    .musteripaneli-kullanici-menu-altbilgi a:hover:after {
        transform: translateX(100%);
    }
    
    /* Toast Bildirimleri */
    .musteripaneli-toast-konteyner {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        pointer-events: none;
    }
    
    .musteripaneli-toast {
        background: var(--musteripaneli-kart-arkaplan);
        border-radius: var(--musteripaneli-radius-orta);
        box-shadow: var(--musteripaneli-golge-buyuk);
        padding: 1rem 1.25rem;
        display: flex;
        align-items: center;
        min-width: 300px;
        max-width: 100%;
        transform: translateX(100%) translateY(0);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
        pointer-events: auto;
        position: relative;
        overflow: hidden;
        border-left: 4px solid var(--musteripaneli-ana-renk);
        color: var(--musteripaneli-koyu-yazi);
    }
    
    .musteripaneli-toast.goster {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    
    .musteripaneli-toast.basari {
        border-left-color: var(--musteripaneli-basari-renk);
    }
    
    .musteripaneli-toast.basari .musteripaneli-toast-ikon {
        color: var(--musteripaneli-basari-renk);
    }
    
    .musteripaneli-toast.uyari {
        border-left-color: var(--musteripaneli-uyari-renk);
    }
    
    .musteripaneli-toast.uyari .musteripaneli-toast-ikon {
        color: var(--musteripaneli-uyari-renk);
    }
    
    .musteripaneli-toast.hata {
        border-left-color: var(--musteripaneli-tehlike-renk);
    }
    
    .musteripaneli-toast.hata .musteripaneli-toast-ikon {
        color: var(--musteripaneli-tehlike-renk);
    }
    
    .musteripaneli-toast-ikon {
        margin-right: 1rem;
        color: var(--musteripaneli-ana-renk);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .musteripaneli-toast-ikon svg {
        width: 24px;
        height: 24px;
    }
    
    .musteripaneli-toast-icerik {
        flex: 1;
    }
    
    .musteripaneli-toast-baslik {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--musteripaneli-koyu-yazi);
        margin-bottom: 0.25rem;
    }
    
    .musteripaneli-toast-mesaj {
        font-size: 0.75rem;
        color: var(--musteripaneli-acik-yazi);
    }
    
    .musteripaneli-toast-kapat {
        background: transparent;
        border: none;
        color: var(--musteripaneli-acik-yazi);
        cursor: pointer;
        margin-left: 0.5rem;
        transition: var(--musteripaneli-gecis);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.25rem;
    }
    
    .musteripaneli-toast-kapat svg {
        width: 16px;
        height: 16px;
    }
    
    .musteripaneli-toast-kapat:hover {
        color: var(--musteripaneli-koyu-yazi);
        transform: rotate(90deg);
    }
    
    /* Animasyonlar */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fadeIn {
        animation: fadeIn 0.5s ease-out forwards;
    }
    
    @keyframes pulseGlow {
        0% {
            box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
        }
    }
    
    .pulseGlow {
        animation: pulseGlow 2s infinite;
    }
    
    @keyframes float {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    .float {
        animation: float 3s ease-in-out infinite;
    }
    
    /* Mobil Menü İçin Overlay (Örtü) */
    .musteripaneli-ortu {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .musteripaneli-ortu.aktif {
        opacity: 1;
        visibility: visible;
    }
    
    /* Responsive Tasarım */
    @media (max-width: 1280px) {
        .musteripaneli-istatistik-konteyner {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .musteripaneli-karsilama-sol {
            max-width: 100%;
        }
    }
    
    @media (max-width: 1024px) {
        .musteripaneli-konteyner {
            padding: 1rem;
        }
        
.musteripaneli-kenar-cubugu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    height: 100vh;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
    box-shadow: var(--musteripaneli-golge-buyuk);
    border-radius: 0 10px 10px 0; /* Sırasıyla: üst-sol, üst-sağ, alt-sağ, alt-sol */
}

        .musteripaneli-kenar-cubugu.aktif {
            transform: translateX(0); /* Düzeltme: Aktif olunca görünür */
        }
        
        .musteripaneli-mobil-menu-toggle {
            display: flex;
        }

        .musteripaneli-mobil-kapat {
            display: flex; /* Düzeltme: Mobilde göster */
        }

        @media (min-width: 1025px) {
            .musteripaneli-mobil-kapat {
                display: none; /* Düzeltme: Masaüstünde gizle */
            }
        }
        
        .musteripaneli-ana-icerik {
            margin-left: 0; /* Düzeltme */
        }
        
        .musteripaneli-ust-menu-link {
            padding: 0 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .musteripaneli-istatistik-konteyner {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .musteripaneli-ust-menu {
            flex-wrap: wrap;
        }
        
        .musteripaneli-ust-menu-container {
            order: 3;
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-left: 0;
        }
        
        .musteripaneli-ust-menu-liste {
            width: max-content;
        }
        
        .musteripaneli-ust-araclar {
            margin-left: auto;
        }
        
        /* Mobil için dropdown'ları merkeze al */
        .musteripaneli-bildirim-panel, 
        .musteripaneli-kullanici-menu {
            position: fixed;
            width: calc(100% - 2rem);
            left: 1rem;
            right: 1rem;
            top: 5rem; /* Düzeltme: Üst menüden biraz aşağıda */
            transform: translateY(10px);
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .musteripaneli-bildirim-panel.aktif,
        .musteripaneli-kullanici-menu.aktif {
            transform: translateY(0);
        }
        
        .musteripaneli-karsilama {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .musteripaneli-karsilama-sag {
            width: 100%;
        }
        
        .musteripaneli-hizli-islem {
            flex: 1;
            justify-content: center;
        }
    }
    
    @media (max-width: 576px) {
        .musteripaneli-konteyner {
            padding: 0.5rem;
        }
        
        .musteripaneli-ana-duzen {
            gap: 0.75rem;
        }
        
        .musteripaneli-karsilama {
            padding: 1.25rem;
        }
        
        .musteripaneli-kullanici {
            font-size: 1.25rem;
        }
        
        .musteripaneli-ust-araclar {
            padding: 0 0.75rem;
        }
        
        .musteripaneli-istatistik-kart {
            padding: 1.25rem;
        }
        
        .musteripaneli-istatistik-deger {
            font-size: 1.75rem;
        }
        
        .musteripaneli-toast {
            min-width: auto;
            width: calc(100vw - 2rem);
        }
    }
    
    /* Yukarı çık butonu */
    .musteripaneli-yukari-cik {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: var(--musteripaneli-ana-renk);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(var(--musterihphedar-primary-rgb), 0.3);
        cursor: pointer;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: var(--musteripaneli-gecis);
    }
    
    .musteripaneli-yukari-cik svg {
        width: 20px;
        height: 20px;
    }
    
    .musteripaneli-yukari-cik:hover {
        background: var(--musteripaneli-ana-renk-koyu);
        transform: translateY(-5px);
    }
    
    .musteripaneli-yukari-cik.goster {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    
    @keyframes dropdown-appear {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Koyu tema için ek iyileştirmeler */
    [data-theme="dark"] .musteripaneli-kullanici-avatar,
    [data-theme="dark"] .musteripaneli-kullanici-avatar-buyuk {
        box-shadow: 0 3px 6px rgba(243, 167, 18, 0.2);
    }
    
    [data-theme="dark"] .musteripaneli-istatistik-kart:hover {
        background: var(--musteripaneli-kart-arkaplan-hafif);
    }
    
    /* İstatistik kartları için hover efektleri */
    .musteripaneli-istatistik-kart {
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }
    
    .musteripaneli-istatistik-kart:hover::before {
        opacity: 1;
    }
    
    /* Menü hover efektleri */
    .musteripaneli-menu-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(var(--musterihphedar-primary-rgb), 0.1); /* Düzeltme */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
        z-index: -1;
    }

    [data-theme="dark"] .musteripaneli-menu-link::before {
        background: rgba(99, 102, 241, 0.1);
    }
    
    .musteripaneli-menu-link:hover::before {
        width: 100%;
        height: 100%;
        border-radius: 0.75rem;
    }
    
    /* Ana içerik hover efektleri */
    .musteripaneli-karsilama-sag .musteripaneli-hizli-islem {
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }
    
    /* Toast animasyonları */
    @keyframes toastIn {
        0% {
            transform: translateX(100%);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes toastOut {
        0% {
            transform: translateX(0);
            opacity: 1;
        }
        100% {
            transform: translateX(100%);
            opacity: 0;
        }
    }
    
    .musteripaneli-toast {
        animation: toastIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    }
    
    .musteripaneli-toast.cikis {
        animation: toastOut 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    }
    
    /* Tema değiştirici */
    .tema-switch-container {
      display: inline-flex;
      align-items: center;
      padding: 5px;
      border-radius: 30px;
      background-color: rgba(0, 0, 0, 0.05);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    [data-theme="dark"] .tema-switch-container {
      background-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .tema-switch {
      position: relative;
      width: 60px;
      height: 30px;
      display: flex;
      align-items: center;
      cursor: pointer;
      border-radius: 30px;
      background: linear-gradient(to right, #f7d75e, #f8edbb);
      transition: all 0.4s ease;
      overflow: hidden;
    }
    
    [data-theme="dark"] .tema-switch {
      background: linear-gradient(to right, #384160, #222b45);
    }
    
    .tema-switch::before {
      content: "";
      position: absolute;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      top: 3px;
      left: 3px;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      z-index: 2;
    }
    
    [data-theme="dark"] .tema-switch::before {
      left: 33px;
;
    }
    
    .tema-icon {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      transition: all 0.3s ease;
    }
    
    .tema-icon.sun {
      left: 3px;
      opacity: 1;
      color: #ff9500;
    }
    
    .tema-icon.moon {
      right: 3px;
      opacity: 0;
      color: #a0c0ff;
    }
    
    [data-theme="dark"] .tema-icon.sun {
      opacity: 0;
    }
    
    [data-theme="dark"] .tema-icon.moon {
      opacity: 1;
    }
    
    .tema-switch .stars {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    [data-theme="dark"] .tema-switch .stars {
      opacity: 1;
    }
    
    .tema-switch .star {
      position: absolute;
      background-color: #fff;
      border-radius: 50%;
      width: 2px;
      height: 2px;
      opacity: 0;
      animation: twinkle 2s infinite;
    }
    
    .tema-switch .star:nth-child(1) {
      top: 15%;
      left: 25%;
      animation-delay: 0.3s;
    }
    
    .tema-switch .star:nth-child(2) {
      top: 30%;
      left: 65%;
      animation-delay: 0.6s;
    }
    
    .tema-switch .star:nth-child(3) {
      top: 60%;
      left: 35%;
      animation-delay: 0.9s;
    }
    
.tema-switch .star:nth-child(4) {
      top: 45%;
      left: 85%;
      animation-delay: 1.2s;
    }
    
    .tema-switch .star:nth-child(5) {
      top: 70%;
      left: 70%;
      animation-delay: 1.5s;
    }
    
    @keyframes twinkle {
      0%, 100% { opacity: 0.2; }
      50% { opacity: 1; }
    }
    
    .tema-switch .clouds {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      opacity: 1;
      transition: opacity 0.3s ease;
    }
    
    [data-theme="dark"] .tema-switch .clouds {
      opacity: 0;
    }
    
    .tema-switch .cloud {
      position: absolute;
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 10px;
    }
    
    .tema-switch .cloud:nth-child(1) {
      width: 16px;
      height: 6px;
      top: 35%;
      left: 60%;
    }
    
    .tema-switch .cloud:nth-child(2) {
      width: 12px;
      height: 5px;
      top: 55%;
      left: 30%;
    }
    
    .tema-label {
      margin-left: 10px;
      font-size: 14px;
      font-weight: 500;
      color: #555;
      transition: color 0.3s ease, opacity 0.3s ease;
    }
    
    .tema-label.day {
      opacity: 1;
      display: inline;
    }
    
    .tema-label.night {
      opacity: 0;
      display: none;
    }
    
    [data-theme="dark"] .tema-label {
      color: #e0e0e0;
    }
    
    [data-theme="dark"] .tema-label.day {
      opacity: 0;
      display: none; 
    }
    
    [data-theme="dark"] .tema-label.night {
      opacity: 1;
      display: inline;
    }
    
    /* Hoverda parlama efekti */
    .tema-switch:hover::before {
      box-shadow: 0 0 8px 2px rgba(91, 65, 255, 0.4);
    }
    
    [data-theme="dark"] .tema-switch:hover::before {
      box-shadow: 0 0 8px 2px rgba(255, 149, 0, 0.4);
    }
    .arkaplan-aurora {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1; /* İçeriğin arkasında kalması için */
        overflow: hidden;
        transition: background-color 0.5s ease;
    }

    /* Aydınlık Tema Arka Planı */
    .arkaplan-aurora {
        background-color: var(--musteripaneli-arkaplan, #f1f5f9);
    }

    .aurora-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px); /* Bulanıklık efekti */
        opacity: 0.25;
        transition: background 0.5s ease;
        will-change: transform;
    }

    /* Aydınlık Tema Blob Renkleri ve Pozisyonları */
    .aurora-blob:nth-child(1) {
        width: 500px;
        height: 500px;
        top: -150px;
        left: -200px;
        background: rgba(var(--musterihphedar-primary-rgb), 0.6);
        animation: blob-move 25s infinite alternate;
    }

    .aurora-blob:nth-child(2) {
        width: 600px;
        height: 600px;
        top: 50%;
        left: 50%;
        background: var(--musterihphedar-secondary, #2ec4b6);
        animation: blob-move 30s infinite alternate-reverse;
    }

    .aurora-blob:nth-child(3) {
        width: 450px;
        height: 450px;
        bottom: -200px;
        right: -150px;
        background: var(--musterihphedar-warning, #ff9e00);
        animation: blob-move 20s infinite alternate;
    }


    /* Karanlık Tema Arka Planı ve Blob'ları */
    [data-theme="dark"] .arkaplan-aurora {
        background-color: var(--musteripaneli-daha-koyu-arkaplan, #0f172a);
    }

    [data-theme="dark"] .aurora-blob {
        opacity: 0.3; /* Karanlık temada biraz daha belirgin olabilir */
    }

    [data-theme="dark"] .aurora-blob:nth-child(1) {
        background: var(--musterihphedar-primary, #5A31FF);
    }

    [data-theme="dark"] .aurora-blob:nth-child(2) {
        background: var(--musterihphedar-info, #3498db);
    }

    [data-theme="dark"] .aurora-blob:nth-child(3) {
        background: var(--musterihphedar-danger, #e63946);
    }

    /* Animasyon Keyframes */
    @keyframes blob-move {
        0% {
            transform: scale(1) translate(0px, 0px);
        }
        50% {
            transform: scale(1.2) translate(100px, -50px);
        }
        100% {
            transform: scale(1) translate(-50px, 80px);
        }
    }
  
:root {
    /* Ana renkler - 3D gradyan versiyonlarıyla */
    --mavi: #4361ee;
    --mavi-gradyan: linear-gradient(135deg, #4361ee, #3a0ca3);
    --yesil: #2ec4b6;
    --yesil-gradyan: linear-gradient(135deg, #2ec4b6, #14919b);
    --turuncu: #ff9e00;
    --turuncu-gradyan: linear-gradient(135deg, #ff9e00, #ff5400);
    --kirmizi: #e63946;
    --kirmizi-gradyan: linear-gradient(135deg, #e63946, #d62828);
    
    /* Gündüz modu değişkenleri */
    --arkaplan: #f8fafc;
    --kart-arkaplan: #ffffff;
    --kart-hover: #f1f5f9;
    --yazi: #4b5563;
    --baslik: #1e293b;
    --kenar: #e2e8f0;
    --alt-kenar: #f1f5f9;
    --golge: 0 10px 25px rgba(0, 0, 0, 0.04), 0 5px 10px rgba(0, 0, 0, 0.02);
    --hover-golge: 0 20px 30px rgba(0, 0, 0, 0.08), 0 6px 10px rgba(0, 0, 0, 0.04);
    
    /* İkon arkaplan renkleri */
    --mavi-arkaplan: rgba(67, 97, 238, 0.12);
    --yesil-arkaplan: rgba(46, 196, 182, 0.12);
    --turuncu-arkaplan: rgba(255, 158, 0, 0.12);
    --kirmizi-arkaplan: rgba(230, 57, 70, 0.12);
}

/* Koyu mod değişkenleri */
[data-theme="dark"],
body.dark {
    --arkaplan: #0f172a;
    --kart-arkaplan: #1e293b;
    --kart-hover: #282f39;
    --yazi: #94a3b8;
    --baslik: #e2e8f0;
    --kenar: #334155;
    --alt-kenar: #273344;
    --golge: 0 10px 25px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1);
    --hover-golge: 0 20px 30px rgba(0, 0, 0, 0.25), 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Mobil ve tablet için - küçük ekranlarda tek sütun */
@media (min-width: 576px) {
    .istatistik-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Orta boyutlu tabletler ve büyük telefonlar için */
@media (min-width: 768px) {
    .istatistik-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .istatistik-container {
        padding: 5px;
    }
}

/* Ana kart tasarımı - minimum yükseklik eklenerek mobil görünüm iyileştirildi */
.istatistik-kart {
    background-color: var(--kart-arkaplan);
    border-radius: 16px;
    box-shadow: var(--golge);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--kenar);
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 180px;
    width: 100%;
    backdrop-filter: blur(10px);
}

/* Dokunmatik cihazlar için hover durumu düzeltmesi */
@media (hover: hover) {
    .istatistik-kart:hover {
        transform: translateY(-6px);
        box-shadow: var(--hover-golge);
        border-color: transparent;
    }
}

/* Mobil cihazlar için dokunma animasyonu */
@media (hover: none) {
    .istatistik-kart:active {
        transform: scale(0.98);
        box-shadow: var(--hover-golge);
    }
}

/* Dekoratif köşe efekti */
.istatistik-kart::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--kenar) 0%, transparent 70%);
    opacity: 0.3;
    transform: scale(0);
    transition: transform 0.5s ease;
    border-radius: 50%;
    z-index: 0;
}

@media (hover: hover) {
    .istatistik-kart:hover::before {
        transform: scale(1);
    }
}

/* Başlık alanı - mobil için padding düzeltmesi */
.istatistik-baslik-alani {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 8px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--alt-kenar);
}

@media (min-width: 768px) {
    .istatistik-baslik-alani {
        padding: 20px 20px 10px;
    }
}

.istatistik-baslik {
    color: var(--baslik);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

@media (min-width: 768px) {
    .istatistik-baslik {
        font-size: 1rem;
        gap: 8px;
    }
}



.istatistik-buton {
    padding: 6px 10px;
    background-color: transparent;
    border: 1px solid var(--kenar);
    color: var(--yazi);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .istatistik-buton {
        padding: 8px 14px;
        font-size: 0.75rem;
        border-radius: 12px;
    }
}

.istatistik-buton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

@media (hover: hover) {
    .istatistik-buton:hover {
        background-color: var(--kart-hover);
        color: var(--baslik);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    }

    .istatistik-buton:hover::before {
        transform: translateX(100%);
    }
}

/* İçerik alanı - mobil için padding düzeltmesi */
.istatistik-icerik {
    padding: 12px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex: 1;
}

@media (min-width: 768px) {
    .istatistik-icerik {
        padding: 16px 20px 20px;
    }
}

.istatistik-sol {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.istatistik-link {
    color: var(--yazi);
    font-size: 0.75rem;
    text-decoration: none;
    margin-bottom: 10px;
    padding-bottom: 3px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    max-width: fit-content;
}

@media (min-width: 768px) {
    .istatistik-link {
        font-size: 0.875rem;
        margin-bottom: 14px;
        padding-bottom: 4px;
    }
}

.istatistik-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 2px;
    background: var(--mavi-gradyan);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.istatistik-kart-2 .istatistik-link::after {
    background: var(--yesil-gradyan);
}

.istatistik-kart-3 .istatistik-link::after {
    background: var(--turuncu-gradyan);
}

.istatistik-kart-4 .istatistik-link::after {
    background: var(--kirmizi-gradyan);
}

@media (hover: hover) {
    .istatistik-link:hover {
        color: var(--baslik);
        transform: translateX(3px);
    }

    .istatistik-link:hover::after {
        width: 100%;
    }
}

/* TAMAMEN YENİ DEĞER TASARIMI - mobil için ölçeklenmiş */
.istatistik-deger-alani {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 36px;
}

@media (min-width: 768px) {
    .istatistik-deger-alani {
        min-height: 40px;
    }
}

.istatistik-deger {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--baslik);
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: all 0.3s ease;
    padding-right: 12px;
    padding-left: 8px;
}

@media (min-width: 768px) {
    .istatistik-deger {
        font-size: 1.4rem;
        padding-right: 18px;
    }
}

/* Değer sayısı için özel efektler */
.istatistik-deger::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .istatistik-deger::before {
        left: -8px;
        height: 24px;
        width: 4px;
    }
}

.istatistik-kart-1 .istatistik-deger::before {
    background: var(--mavi);
    box-shadow: 0 0 8px rgba(67, 97, 238, 0.4);
}

.istatistik-kart-2 .istatistik-deger::before {
    background: var(--yesil);
    box-shadow: 0 0 8px rgba(46, 196, 182, 0.4);
}

.istatistik-kart-3 .istatistik-deger::before {
    background: var(--turuncu);
    box-shadow: 0 0 8px rgba(255, 158, 0, 0.4);
}

.istatistik-kart-4 .istatistik-deger::before {
    background: var(--kirmizi);
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.4);
}

/* Kart üzerine gelince değer değişsin - hover desteği olan cihazlar için */
@media (hover: hover) {
    .istatistik-kart:hover .istatistik-deger {
        transform: scale(1.05);
        padding-left: 8px;
    }

    .istatistik-kart:hover .istatistik-deger::before {
        height: 28px;
    }
    
    @media (min-width: 768px) {
        .istatistik-kart:hover .istatistik-deger::before {
            height: 32px;
        }
    }
}

/* Değer arkasındaki "halo" efekti katmanları - YENİ TASARIM */
.istatistik-deger-katman-1,
.istatistik-deger-katman-2 {
    position: absolute;
    border-radius: 4px;
    opacity: 0.1;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    height: 0;
    width: 8px;
}

@media (min-width: 768px) {
    .istatistik-deger-katman-1,
    .istatistik-deger-katman-2 {
        left: -15px;
        width: 10px;
    }
}

@media (hover: hover) {
    .istatistik-kart:hover .istatistik-deger-katman-1 {
        height: 36px;
        width: 8px;
        animation: pulsate 1.5s infinite alternate ease-in-out;
    }

    .istatistik-kart:hover .istatistik-deger-katman-2 {
        height: 22px;
        width: 8px;
        left: -8px;
        animation: pulsate 2s infinite alternate-reverse ease-in-out;
    }
    
    @media (min-width: 768px) {
        .istatistik-kart:hover .istatistik-deger-katman-1 {
            height: 40px;
            width: 10px;
        }
        
        .istatistik-kart:hover .istatistik-deger-katman-2 {
            height: 25px;
            width: 10px;
            left: -10px;
        }
    }
}

@keyframes pulsate {
    0% { opacity: 0.05; }
    100% { opacity: 0.2; }
}

/* İkon alanı - mobil için küçültülmüş */
.istatistik-sag {
    margin-left: 12px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .istatistik-sag {
        margin-left: 16px;
    }
}

.istatistik-ikon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .istatistik-ikon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
}

.istatistik-ikon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.istatistik-ikon svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .istatistik-ikon svg {
        width: 22px;
        height: 22px;
    }
}

@media (hover: hover) {
    .istatistik-kart:hover .istatistik-ikon {
        transform: scale(1.1);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .istatistik-kart:hover .istatistik-ikon::before {
        opacity: 1;
    }

    .istatistik-kart:hover .istatistik-ikon svg {
        transform: scale(1.15);
        color: white !important;
    }
}

/* Kart renklerine göre ikon arkaplanları */
.istatistik-kart-1 .istatistik-ikon {
    background-color: var(--mavi-arkaplan);
    color: var(--mavi);
}

.istatistik-kart-1 .istatistik-ikon::before {
    background: var(--mavi-gradyan);
}

.istatistik-kart-2 .istatistik-ikon {
    background-color: var(--yesil-arkaplan);
    color: var(--yesil);
}

.istatistik-kart-2 .istatistik-ikon::before {
    background: var(--yesil-gradyan);
}

.istatistik-kart-3 .istatistik-ikon {
    background-color: var(--turuncu-arkaplan);
    color: var(--turuncu);
}

.istatistik-kart-3 .istatistik-ikon::before {
    background: var(--turuncu-gradyan);
}

.istatistik-kart-4 .istatistik-ikon {
    background-color: var(--kirmizi-arkaplan);
    color: var(--kirmizi);
}

.istatistik-kart-4 .istatistik-ikon::before {
    background: var(--kirmizi-gradyan);
}

/* Değer katmanlarının renkleri */
.istatistik-kart-1 .istatistik-deger-katman-1,
.istatistik-kart-1 .istatistik-deger-katman-2 {
    background-color: var(--mavi);
}

.istatistik-kart-2 .istatistik-deger-katman-1,
.istatistik-kart-2 .istatistik-deger-katman-2 {
    background-color: var(--yesil);
}

.istatistik-kart-3 .istatistik-deger-katman-1,
.istatistik-kart-3 .istatistik-deger-katman-2 {
    background-color: var(--turuncu);
}

.istatistik-kart-4 .istatistik-deger-katman-1,
.istatistik-kart-4 .istatistik-deger-katman-2 {
    background-color: var(--kirmizi);
}

/* Kart Progress bar - YENİ ÖZELLİK - hover desteği olan cihazlar için */
.istatistik-kart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

@media (hover: hover) {
    .istatistik-kart:hover::after {
        width: 100%;
    }
}

.istatistik-kart-1::after {
    background: var(--mavi-gradyan);
}

.istatistik-kart-2::after {
    background: var(--yesil-gradyan);
}

.istatistik-kart-3::after {
    background: var(--turuncu-gradyan);
}

.istatistik-kart-4::after {
    background: var(--kirmizi-gradyan);
}

/* YENİ EKLENDİ - Dokunmatik cihazlar için active durumu */
@media (hover: none) {
    .istatistik-kart:active::after {
        width: 100%;
    }
    
    .istatistik-kart:active .istatistik-deger {
        transform: scale(1.02);
    }
    
    .istatistik-kart:active .istatistik-ikon::before {
        opacity: 1;
    }
    
    .istatistik-kart:active .istatistik-ikon svg {
        color: white !important;
    }
}

/* YENİ EKLENDİ - Animasyonlar için performans iyileştirmeleri */
.istatistik-kart,
.istatistik-ikon,
.istatistik-deger,
.istatistik-buton,
.istatistik-link {
    will-change: transform;
}

/* YENİ EKLENDİ - Daha iyi yükleme deneyimi */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.istatistik-kart {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.istatistik-kart-1 {
    animation-delay: 0.1s;
}

.istatistik-kart-2 {
    animation-delay: 0.2s;
}

.istatistik-kart-3 {
    animation-delay: 0.3s;
}

.istatistik-kart-4 {
    animation-delay: 0.4s;
}

        .istatistik-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 0 auto;
        }
        
        /* Masaüstü için 4 sütun */
        @media (min-width: 1024px) {
            .istatistik-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

/* YENİ EKLENDİ - Tema değiştirici düğme stili */
.tema-degistirici {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--kart-arkaplan);
    border: 1px solid var(--kenar);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: var(--golge);
    transition: all 0.3s ease;
}

.tema-degistirici:hover {
    transform: scale(1.1);
    box-shadow: var(--hover-golge);
}

.tema-degistirici svg {
    width: 24px;
    height: 24px;
    color: var(--baslik);
    transition: all 0.3s ease;
}

        /* Ana CSS Değişkenleri */
        :root {
            /* Açık Tema (Gündüz Modu) Değişkenleri */
            --hesabim-primary: #4361ee;
            --hesabim-primary-hover: #3a56d4;
            --hesabim-primary-rgb: 67, 97, 238;
            --hesabim-success: #10b981;
            --hesabim-success-rgb: 16, 185, 129;
            --hesabim-warning: #f59e0b;
            --hesabim-warning-rgb: 245, 158, 11;
            --hesabim-danger: #ef4444;
            --hesabim-danger-rgb: 239, 68, 68;
            --hesabim-info: var(--musterihphedar-primary)
;
            --hesabim-info-rgb: 59, 130, 246;
            --hesabim-secondary: #64748b;
            --hesabim-secondary-rgb: 100, 116, 139;
            
            /* Arkaplan ve metin renkleri */
            --hesabim-bg-main: #f8fafc;
            --hesabim-bg-card: #ffffff;
            --hesabim-bg-alt: #f1f5f9;
            --hesabim-text-primary: #1e293b;
            --hesabim-text-secondary: #64748b;
            --hesabim-text-muted: #94a3b8;
            --hesabim-border: #e2e8f0;
            
            /* Gölgeler */
            --hesabim-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --hesabim-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --hesabim-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
            
            /* Yuvarlatma değerleri */
            --hesabim-radius-sm: 0.375rem;
            --hesabim-radius: 0.5rem;
            --hesabim-radius-md: 0.75rem;
            --hesabim-radius-lg: 1rem;
            
            /* Animasyon */
            --hesabim-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Özel Değerler */
            --hesabim-card-height: auto;
            --hesabim-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* Karanlık Mod Değişkenleri */
        .dark-mode {
            /* Koyu Tema Değişkenleri */
            --hesabim-primary: #60a5fa;
            --hesabim-primary-hover: #93c5fd;
            --hesabim-primary-rgb: 96, 165, 250;
            --hesabim-success: #34d399;
            --hesabim-success-rgb: 52, 211, 153;
            --hesabim-warning: #fbbf24;
            --hesabim-warning-rgb: 251, 191, 36;
            --hesabim-danger: #f87171;
            --hesabim-danger-rgb: 248, 113, 113;
            --hesabim-info: #38bdf8;
            --hesabim-info-rgb: 56, 189, 248;
            --hesabim-secondary: #94a3b8;
            --hesabim-secondary-rgb: 148, 163, 184;
            
            /* Arkaplan ve metin renkleri */
            --hesabim-bg-main: #0f172a;
            --hesabim-bg-card: #1e293b;
            --hesabim-bg-alt: #141e33;
            --hesabim-bg-hover: #1e293b;
            --hesabim-text-primary: #f3f4f6;
            --hesabim-text-secondary: #cbd5e1;
            --hesabim-text-muted: #94a3b8;
            --hesabim-border: #273449;
            
            /* Gölgeler - Koyu Mod */
            --hesabim-shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
            --hesabim-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
            --hesabim-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(var(--hesabim-primary-rgb), 0.2);
        }
        /* Ana Container */
        .hesabim-container {
            width: 100%;
            margin: 0 auto;
            padding: 0.5rem;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 0.5rem;
            position: relative;
            z-index: 1;
        }

        /* Kart Bileşenleri - YENİ VE GELİŞTİRİLMİŞ */
.hesabim-card {
    background-color: var(--musterihphedar-card-bg);
    border-radius: var(--hesabim-radius-lg);
    box-shadow: var(--hesabim-shadow);
    overflow: hidden;
    transition: var(--hesabim-transition);
    display: flex
;
    flex-direction: column;
    height: var(--hesabim-card-height);
    position: relative;
    z-index: 1;
    isolation: isolate;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

        .hesabim-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, transparent, rgba(var(--hesabim-primary-rgb), 0.03), transparent);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hesabim-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(var(--hesabim-primary-rgb), 0.08), transparent 60%);
            opacity: 0;
            transform: translate3d(0, 0, 0) scale(0.5);
            z-index: -1;
            transition: transform 0.6s ease, opacity 0.6s ease;
            pointer-events: none;
        }

        .hesabim-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--hesabim-shadow-hover);
        }

        .hesabim-card:hover::before {
            opacity: 1;
        }

        .hesabim-card:hover::after {
            opacity: 0.6;
            transform: translate3d(0, 0, 0) scale(1);
        }

        .dark-mode .hesabim-card::before {
            background: linear-gradient(to bottom right, transparent, rgba(var(--hesabim-primary-rgb), 0.1), transparent);
        }

        .dark-mode .hesabim-card::after {
            background: radial-gradient(circle, rgba(var(--hesabim-primary-rgb), 0.15), transparent 70%);
        }

        .dark-mode .hesabim-card:hover::after {
            opacity: 1;
        }

        .hesabim-card-col-6 {
            grid-column: span 6;
        }

        .hesabim-card-col-12 {
            grid-column: span 12;
        }

        .hesabim-card-header {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--hesabim-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .hesabim-card-header::before {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 50px;
            height: 1px;
            background-color: var(--hesabim-primary);
            transition: width 0.3s ease;
        }

        .hesabim-card:hover .hesabim-card-header::before {
            width: 100px;
        }

        .hesabim-card-title {
            margin: 0;
            font-size: 1.125rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.625rem;
        }

        .hesabim-card-title i {
            color: var(--hesabim-primary);
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }

        .hesabim-card:hover .hesabim-card-title i {
            transform: scale(1.1);
        }

        .hesabim-card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .hesabim-card-title a:hover {
            color: var(--hesabim-primary);
        }

        .hesabim-card-actions {
            display: flex;
            gap: 0.625rem;
        }

        .hesabim-card-body {
            flex: 1;
            padding: 0;
            overflow: hidden;
        }

        /* Butonlar */
        .hesabim-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            border-radius: var(--hesabim-radius);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            transform: translateZ(0);
        }

        .hesabim-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, 
                rgba(255, 255, 255, 0), 
                rgba(255, 255, 255, 0.1), 
                rgba(255, 255, 255, 0));
            transform: translateX(-100%);
            transition: transform 0.7s ease;
            pointer-events: none;
        }

        .hesabim-btn:hover::before {
            transform: translateX(100%);
        }

        .hesabim-btn-primary {
            background-color: var(--hesabim-primary);
            color: white;
            box-shadow: var(--musterihphedar-danger-bg)
;
        }

        .hesabim-btn-primary:hover {
            background-color: var(--musterihphedar-primary);
            box-shadow: rgba(var(--musterihphedar-primary-rgb), 0.08);
            transform: translateY(-2px);
        }

        .hesabim-btn-small {
            padding: 0.375rem 0.875rem;
            font-size: 0.75rem;
        }

        .hesabim-incele-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: var(--hesabim-radius);
            background-color: var(--hesabim-bg-alt);
            color: var(--hesabim-text-secondary);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--hesabim-border);
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
        }

        .hesabim-incele-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(var(--hesabim-primary-rgb), 0.2), transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: scale(0.5);
            pointer-events: none;
        }

        .hesabim-incele-btn:hover {
            background-color: var(--hesabim-primary);
            color: white;
            border-color: var(--hesabim-primary);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(var(--hesabim-primary-rgb), 0.4);
        }

        .hesabim-incele-btn:hover::before {
            opacity: 1;
            transform: scale(2);
        }

        .hesabim-incele-btn i {
            transition: transform 0.3s ease;
            font-size: 0.875rem;
        }

        .hesabim-incele-btn:hover i {
            transform: scale(1.2);
        }

        .hesabim-incele-btn.hesabim-disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Tablo Stilleri */
.hesabim-table-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--hesabim-border) transparent;
}

        .hesabim-table-container::-webkit-scrollbar {
            height: 6px;
            width: 6px;
        }

        .hesabim-table-container::-webkit-scrollbar-track {
            background: transparent;
        }

        .hesabim-table-container::-webkit-scrollbar-thumb {
            background-color: var(--hesabim-border);
            border-radius: 3px;
        }

        .hesabim-table-container::-webkit-scrollbar-thumb:hover {
            background-color: var(--hesabim-secondary);
        }

        .hesabim-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 0.875rem;
        }

.hesabim-table th {
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--hesabim-text-secondary);
    border-bottom: 1px solid var(--hesabim-border);
    top: 0;
    z-index: 10;
    transition: background-color 0.3s ease;
}

        .hesabim-table td {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--hesabim-border);
            transition: all 0.3s ease;
            vertical-align: middle;
        }

        .hesabim-table tr:last-child td {
            border-bottom: none;
        }

        .hesabim-table tr {
            transition: all 0.3s ease;
        }

        .hesabim-table tr:hover td {
            background-color: var(--hesabim-bg-hover);
        }

        /* Sekmeler */
        .hesabim-tabs {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--hesabim-border);
            scrollbar-width: none;
            position: relative;
        }

        .hesabim-tabs::-webkit-scrollbar {
            display: none;
        }

        .hesabim-tabs::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 30px;
            pointer-events: none;
            opacity: 0.8;
        }

.hesabim-domain-tab {
    align-items: center;
    padding: 0.3rem;
    border-radius: var(--hesabim-radius);
    font-size: 0.8125rem;
    font-weight: 500;
    background-color: var(--hesabim-bg-alt);
    color: var(--hesabim-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--hesabim-border);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    user-select: none;
    transform: translateZ(0);
}

        .hesabim-domain-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, 
                rgba(var(--hesabim-primary-rgb), 0), 
                rgba(var(--hesabim-primary-rgb), 0.1), 
                rgba(var(--hesabim-primary-rgb), 0));
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
            transform: translateX(-100%);
        }

        .hesabim-domain-tab:hover::before {
            transform: translateX(0);
            opacity: 1;
        }

        .hesabim-domain-tab:hover {
            color: var(--hesabim-primary);
            border-color: var(--hesabim-primary);
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(var(--hesabim-primary-rgb), 0.2);
        }

        .dark-mode .hesabim-domain-tab:hover {
            box-shadow: 0 3px 10px rgba(var(--hesabim-primary-rgb), 0.4);
        }

        .hesabim-domain-tab.hesabim-active {
            background-color: var(--hesabim-primary);
            color: white;
            border-color: var(--hesabim-primary);
        }

        .hesabim-domain-tab i {
            font-size: 0.9375rem;
            transition: transform 0.3s ease;
        }

        .hesabim-domain-tab:hover i {
            transform: scale(1.1);
        }

        .hesabim-domain-panel {
            display: none;
            animation: fadeSlideUp 0.4s ease-in-out;
        }

        @keyframes fadeSlideUp {
            from { 
                opacity: 0; 
                transform: translateY(10px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }
/* Responsive Tasarım İyileştirmeleri */
@media (max-width: 1440px) {
    .hesabim-container {
        padding: 1rem;
        grid-template-columns: repeat(12, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .hesabim-container {
        grid-template-columns: repeat(12, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .hesabim-card-col-6 {
        grid-column: span 6;
    }
}

@media (max-width: 992px) {
    .hesabim-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.75rem; 
    }
    
    .hesabim-card-col-6,
    .hesabim-card-col-12 {
        grid-column: span 1;
    }

    .hesabim-news-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hesabim-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .hesabim-card-header {
        padding: 0.75rem 1rem;
    }

    .hesabim-card-title {
        font-size: 0.95rem;
    }

    .hesabim-table td, 
    .hesabim-table th {
        padding: 0.625rem 0.75rem;
    }

    .hesabim-status {
        padding: 0.25rem 0.625rem;
        font-size: 0.675rem;
    }

    .hesabim-card-actions {
        margin-top: 0.25rem;
    }

    .hesabim-tabs {
        padding: 0.625rem 0.75rem;
        gap: 0.375rem;
    }

    .hesabim-domain-tab {
        padding: 0.375rem 0.625rem;
        font-size: 0.725rem;
    }

    .hesabim-domain-tab i {
        font-size: 0.825rem;
    }

    .hesabim-news-grid {
        padding: 0.75rem;
        gap: 0.75rem;
        grid-template-columns: 1fr;
    }

    .hesabim-info-box {
        padding: 0.75rem;
        margin: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hesabim-container {
        padding: 0.25rem;
        gap: 0.5rem;
    }

    .hesabim-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .hesabim-card-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .hesabim-table-container {
        margin: 0 -0.25rem;
    }

    .hesabim-table td, 
    .hesabim-table th {
        padding: 0.5rem 0.625rem;
        font-size: 0.775rem;
    }

    .hesabim-status {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }

    .hesabim-incele-btn {
        width: 30px;
        height: 30px;
    }

    .hesabim-domain-tab {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    .hesabim-badge {
        min-width: 1.25rem;
        height: 1.25rem;
        font-size: 0.6rem;
        padding: 0 0.4rem;
    }

    .hesabim-activity-item {
        padding: 0.625rem 0.75rem;
    }

    .hesabim-activity-meta {
        flex-direction: column;
        gap: 0.375rem;
    }
}

/* Ultra Küçük Ekranlar İçin İyileştirmeler */
@media (max-width: 375px) {
    body {
        font-size: 0.8rem;
    }

    .hesabim-container {
        padding: 0.125rem;
        gap: 0.25rem;
    }

    .hesabim-card-header {
        padding: 0.5rem;
    }

    .hesabim-table td, 
    .hesabim-table th {
        padding: 0.375rem 0.5rem;
        font-size: 0.7rem;
    }

    .hesabim-domain-tab {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }

    .hesabim-status {
        padding: 0.15rem 0.375rem;
        font-size: 0.55rem;
    }
}
        /* Badge */
        .hesabim-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 1.625rem;
            height: 1.625rem;
            padding: 0 0.625rem;
            background-color: rgba(var(--hesabim-primary-rgb), 0.1);
            color: var(--hesabim-primary);
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }

        .hesabim-domain-tab:hover .hesabim-badge {
            background-color: rgba(var(--hesabim-primary-rgb), 0.2);
        }

        .hesabim-domain-tab.hesabim-active .hesabim-badge {
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
        }

        /* Bilgi Kutusu */
        .hesabim-info-box {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            margin: 1rem 1.25rem;
            border-radius: var(--hesabim-radius);
            background-color: rgba(var(--hesabim-info-rgb), 0.08);
            border-left: 4px solid var(--hesabim-info);
            position: relative;
            overflow: hidden;
        }

        .hesabim-info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right,
                rgba(var(--hesabim-info-rgb), 0.05),
                transparent);
            z-index: -1;
        }

        .hesabim-info-box i {
            color: var(--hesabim-info);
            font-size: 1.25rem;
        }

        .hesabim-info-box p {
            margin: 0;
            font-size: 0.875rem;
            color: var(--hesabim-text-secondary);
            line-height: 1.6;
        }

        /* Boş Alan Gösterimi */
        .hesabim-empty {
            padding: 3rem 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hesabim-empty i {
            font-size: 3rem;
            margin-bottom: 1.25rem;
            color: var(--hesabim-text-muted);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
:root {
    /* Light Mode Colors */
    --hesabim-primary-light: var(--musterihphedar-primary)
;
    --hesabim-primary-light-rgb: 59, 130, 246;
    --hesabim-bg-light: #f9fafb;
    --hesabim-bg-alt-light: #ffffff;
    --hesabim-text-primary-light: #111827;
    --hesabim-text-secondary-light: #4b5563;
    --hesabim-border-light: #e5e7eb;

    /* Dark Mode Colors */
    --hesabim-primary-dark: #60a5fa;
    --hesabim-primary-dark-rgb: 96, 165, 250;
    --hesabim-bg-dark: #111827;
    --hesabim-bg-alt-dark: #1f2937;
    --hesabim-text-primary-dark: #f9fafb;
    --hesabim-text-secondary-dark: #d1d5db;
    --hesabim-border-dark: #374151;

    /* Default to Light Mode */
    --hesabim-primary: var(--hesabim-primary-light);
    --hesabim-primary-rgb: var(--hesabim-primary-light-rgb);
    --hesabim-bg: var(--hesabim-bg-light);
    --hesabim-bg-alt: var(--hesabim-bg-alt-light);
    --hesabim-text-primary: var(--hesabim-text-primary-light);
    --hesabim-text-secondary: var(--hesabim-text-secondary-light);
    --hesabim-border: var(--hesabim-border-light);
    
    /* Consistent Variables */
    --hesabim-radius: 0.5rem;
}

/* Dark Mode */
html.dark-mode {
    --hesabim-primary: var(--hesabim-primary-dark);
    --hesabim-primary-rgb: var(--hesabim-primary-dark-rgb);
    --hesabim-bg: var(--hesabim-bg-dark);
    --hesabim-bg-alt: var(--hesabim-bg-alt-dark);
    --hesabim-text-primary: var(--hesabim-text-primary-dark);
    --hesabim-text-secondary: var(--hesabim-text-secondary-dark);
    --hesabim-border: var(--hesabim-border-dark);
}

/* Pagination Styles */
.hesabim-pagination {
    display: flex;
    justify-content: center;
    padding: 1.25rem;
    gap: 0.5rem;
}

.hesabim-pagination a, 
.hesabim-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--hesabim-radius);
    font-size: 0.875rem;
    font-weight: 500;
    background-color: rgba(var(--musterihphedar-primary-rgb), 0.08);
     color: var(--hesabim-info);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--hesabim-border);
}

.hesabim-pagination a:hover {
    background-color: var(--hesabim-primary);
    color: white;
    border-color: var(--hesabim-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--hesabim-primary-rgb), 0.2);
}

.hesabim-pagination span.current,
.hesabim-pagination a.current {
    background-color: var(--hesabim-primary);
    color: white;
    border-color: var(--hesabim-primary);
    box-shadow: 0 4px 8px rgba(var(--hesabim-primary-rgb), 0.2);
}

/* Ellipsis styling */
.hesabim-pagination span {
    cursor: default;
    background: transparent;
    border: none;
}

/* Dark Mode Toggle */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: var(--hesabim-bg-alt);
    border: 1px solid var(--hesabim-border);
    border-radius: var(--hesabim-radius);
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.theme-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}
        .hesabim-empty h3 {
            margin-bottom: 0.75rem;
            font-weight: 600;
            font-size: 1.125rem;
        }

        .hesabim-empty p {
            color: var(--hesabim-text-secondary);
            max-width: 22rem;
            margin: 0 auto;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .hesabim-card:hover .hesabim-empty i {
            transform: scale(1.05);
            color: var(--hesabim-primary);
            opacity: 0.9;
        }

        /* Durum Belirteçleri */
        .hesabim-status {
            display: inline-flex;
            align-items: center;
            padding: 0.375rem 0.875rem;
            border-radius: 2rem;
            background-color: #32ff3b24;
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            
        }

        .hesabim-status::before {
            content: '';
            display: block;
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .hesabim-status::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, 
                rgba(255, 255, 255, 0), 
                rgba(255, 255, 255, 0.08), 
                rgba(255, 255, 255, 0));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hesabim-status:hover::after {
            opacity: 1;
        }

        .hesabim-status-active {
            background-color: rgba(var(--hesabim-success-rgb), 0.15);
            color: var(--hesabim-success);
        }

        .hesabim-status-active::before {
            background-color: var(--hesabim-success);
            box-shadow: 0 0 0 2px rgba(var(--hesabim-success-rgb), 0.3);
            animation: pulse 2s infinite;
        }

        .hesabim-status-waiting,
        .hesabim-status-inprocess {
            background-color: rgba(var(--musterihphedar-primary-rgb), 0.08)
;
            color: var(--hesabim-info);
        }

        .hesabim-status-waiting::before,
        .hesabim-status-inprocess::before {
            background-color: var(--hesabim-info);
            box-shadow: 0 0 0 2px rgba(var(--hesabim-info-rgb), 0.3);
            animation: pulse 2s infinite;
        }

        .hesabim-status-suspended {
            background-color: rgba(var(--hesabim-warning-rgb), 0.15);
            color: var(--hesabim-warning);
        }

        .hesabim-status-suspended::before {
            background-color: var(--hesabim-warning);
            box-shadow: 0 0 0 2px rgba(var(--hesabim-warning-rgb), 0.1);
        }

        .hesabim-status-cancelled,
        .hesabim-status-inactive {
            background-color: rgba(var(--hesabim-secondary-rgb), 0.15);
            color: var(--hesabim-secondary);
        }

        .hesabim-status-cancelled::before,
        .hesabim-status-inactive::before {
            background-color: var(--hesabim-secondary);
            box-shadow: 0 0 0 2px rgba(var(--hesabim-secondary-rgb), 0.1);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(var(--hesabim-success-rgb), 0.5); }
            70% { box-shadow: 0 0 0 6px rgba(var(--hesabim-success-rgb), 0); }
            100% { box-shadow: 0 0 0 0 rgba(var(--hesabim-success-rgb), 0); }
        }

        /* Aktivite Öğeleri */
        .hesabim-activity-item {
            padding: 1.125rem 1.5rem;
            border-bottom: 1px solid var(--hesabim-border);
            transition: all 0.3s ease;
        }

        .hesabim-activity-item:hover {
            background-color: var(--hesabim-bg-hover);
        }

        .hesabim-activity-item:last-child {
            border-bottom: none;
        }

.hesabim-activity-item strong {
    color: #8d95a0;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

        .hesabim-activity-item:hover strong {
            color: var(--hesabim-primary);
        }

        .hesabim-activity-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.625rem;
            font-size: 0.75rem;
            color: var(--hesabim-text-muted);
        }

        .hesabim-activity-meta span {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            transition: color 0.3s ease;
        }

        .hesabim-activity-meta span:hover {
            color: var(--hesabim-text-secondary);
        }

        .hesabim-activity-meta i {
            font-size: 0.875rem;
            color: var(--hesabim-primary);
            opacity: 0.7;
        }

        /* Haberler Grid */
        .hesabim-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 1.5rem;
        }

.hesabim-news-item {
    border-radius: var(--hesabim-radius-md);
    overflow: hidden;
    box-shadow: var(--hesabim-shadow-sm);
    background-color: #ffffff14;
    transition: all 0.4s ease;
    height: 100%;
    display: flex
;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
}

        .hesabim-news-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(var(--hesabim-primary-rgb), 0.05) 50%, transparent);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hesabim-news-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--hesabim-shadow-hover);
        }

        .hesabim-news-item:hover::before {
            opacity: 1;
        }

        .hesabim-news-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .hesabim-news-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.05));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hesabim-news-item:hover .hesabim-news-image::after {
            opacity: 1;
        }

        .hesabim-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .hesabim-news-item:hover .hesabim-news-image img {
            transform: scale(1.08);
        }

        .hesabim-news-content {
            padding: 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .hesabim-news-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 1.25rem;
            right: 1.25rem;
            height: 1px;
            background: linear-gradient(to right, var(--hesabim-primary), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hesabim-news-item:hover .hesabim-news-content::before {
            opacity: 0.5;
        }

        .hesabim-news-content h5 {
            margin-bottom: 0.75rem;
            font-size: 1rem;
            line-height: 1.4;
        }

        .hesabim-news-content h5 a {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .hesabim-news-content h5 a:hover {
        }

        .hesabim-news-content p {
            color: #8d95a0;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
            flex: 1;
            line-height: 1.6;
        }

        .hesabim-news-content a {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .hesabim-news-content a:hover {
            text-decoration: underline;
        }

        /* Yardımcı Sınıflar */
        .hesabim-text-secondary {
            color: var(--hesabim-text-secondary);
        }


        /* DataTables Özelleştirme */
        .dataTables_wrapper {
            background-color: transparent !important;
            border-radius: var(--hesabim-radius);
            overflow: hidden;
            font-size: 0.875rem;
        }
        .dataTables_wrapper .dataTables_length select,
        .dataTables_wrapper .dataTables_filter input {
            background-color: var(--hesabim-bg-alt);
            color: var(--hesabim-text-primary);
            border: 1px solid var(--hesabim-border);
            border-radius: var(--hesabim-radius);
            padding: 0.375rem 0.75rem;
            margin-left: 0.5rem;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .dataTables_wrapper .dataTables_length select:focus,
        .dataTables_wrapper .dataTables_filter input:focus {
            border-color: var(--hesabim-primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(var(--hesabim-primary-rgb), 0.2);
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button {
            padding: 0.375rem 0.75rem !important;
            margin: 0 0.25rem;
            border-radius: var(--hesabim-radius) !important;
            background-color: var(--hesabim-bg-alt) !important;
            color: var(--hesabim-text-secondary) !important;
            border: 1px solid var(--hesabim-border) !important;
            transition: all 0.3s ease !important;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background-color: var(--hesabim-primary) !important;
            color: white !important;
            border-color: var(--hesabim-primary) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(var(--hesabim-primary-rgb), 0.2);
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current {
            background-color: var(--hesabim-primary) !important;
            color: white !important;
            border-color: var(--hesabim-primary) !important;
            box-shadow: 0 4px 8px rgba(var(--hesabim-primary-rgb), 0.2);
            font-weight: 600;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Responive Tasarım İyileştirmeleri */
        @media (max-width: 1200px) {
            .hesabim-container {
                grid-template-columns: repeat(12, 1fr);
                gap: 1.25rem;
                padding: 1.5rem 1.25rem;
            }
            
            .hesabim-card-col-6 {
                grid-column: span 6;
            }
        }

        @media (max-width: 992px) {
            .hesabim-container {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            
            .hesabim-card-col-6,
            .hesabim-card-col-12 {
                grid-column: span 1;
            }

            .hesabim-news-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hesabim-container {
                padding: 1.25rem 1rem;
                gap: 1rem;
            }

            .hesabim-card-header {
                padding: 1rem 1.25rem;
            }

            .hesabim-card-title {
                font-size: 1rem;
            }

            .hesabim-table td, 
            .hesabim-table th {
                padding: 0.875rem 1rem;
            }

            .hesabim-status {
                padding: 0.3125rem 0.75rem;
                font-size: 0.6875rem;
            }

            .hesabim-card-actions {
                margin-top: 0.5rem;
            }

            .hesabim-tabs {
                padding: 0.875rem 1rem;
                gap: 0.5rem;
            }

            .hesabim-domain-tab {
                padding: 0.5rem 0.75rem;
                font-size: 0.75rem;
            }

            .hesabim-domain-tab i {
                font-size: 0.875rem;
            }

            .hesabim-news-grid {
                padding: 1.25rem;
                gap: 1.25rem;
                grid-template-columns: 1fr;
            }

            .hesabim-info-box {
                padding: 1rem;
                margin: 0.75rem 1rem;
            }
        }

        @media (max-width: 576px) {
            .hesabim-container {
                padding: 1rem 0.75rem;
                gap: 0.875rem;
            }

            .hesabim-card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                padding: 1rem;
            }

            .hesabim-card-actions {
                width: 100%;
                justify-content: flex-end;
            }

            .hesabim-table-container {
                margin: 0 -0.25rem;
            }

            .hesabim-table td, 
            .hesabim-table th {
                padding: 0.75rem 0.875rem;
                font-size: 0.8125rem;
            }

            .hesabim-status {
                padding: 0.25rem 0.625rem;
                font-size: 0.625rem;
            }

            .hesabim-incele-btn {
                width: 32px;
                height: 32px;
            }

            .hesabim-domain-tab {
                padding: 0.375rem 0.625rem;
                font-size: 0.6875rem;
            }

            .hesabim-badge {
                min-width: 1.375rem;
                height: 1.375rem;
                font-size: 0.625rem;
                padding: 0 0.5rem;
            }


            .hesabim-activity-item {
                padding: 0.875rem 1rem;
            }

            .hesabim-activity-meta {
                flex-direction: column;
                gap: 0.5rem;
            }



        /* Özel Animasyonlar */
        @keyframes fadeScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Ripple Efekti Stili */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            pointer-events: none;
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
    