/* =========================================================
   PALMERA BAYİ PANELİ — Ana Stil Dosyası
   EticaretPortal teması ile uyumlu, kompakt sidebar layout
   ========================================================= */

:root {
    --sidebar-w: 230px;
    --sidebar-bg: #ffffff;
    --sidebar-hover: rgba(79,142,247,.08);
    --sidebar-active: rgba(79,142,247,.12);
    --accent: #4f8ef7;
    --accent-dark: #3a7bd5;
    --accent-soft: #e9f0fe;
    --top-h: 52px;
    --radius: 10px;
    --shadow: 0 2px 12px rgba(0,0,0,.08);

    /* Metin ve yüzey tonları — hex'i view'a gömme, bu tokenleri kullan. */
    --ink: #1f2937;
    --ink-soft: #6b7280;
    --ink-faint: #9ca3af;
    --line: #e8ecf0;
    --line-soft: #f0f2f7;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --shadow-hover: 0 4px 14px rgba(79,142,247,.13);

    /* Durum renkleri (delta rozetleri, oran kartları) */
    --up-bg: #dcfce7;   --up-fg: #166534;
    --down-bg: #fee2e2; --down-fg: #991b1b;
    --flat-bg: #f1f3f5; --flat-fg: #4b5563;

    /* Boşluk ritmi — 4 px ızgara */
    --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
}

/* ── RESET / BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.875rem;
    background: #f0f2f7;
    color: #2d3748;
    margin: 0;
    overflow-x: hidden;
}

/* ── LAYOUT WRAPPER ──────────────────────── */
.app-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ── SIDEBAR ─────────────────────────────── */
.sidebar {
    width: var(--sidebar-w);
    background: var(--sidebar-bg);
    border-right: 1px solid #e8ecf0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width .25s ease;
}

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }

.sidebar-brand {
    padding: 14px 16px 12px;
    border-bottom: 1px solid #e8ecf0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.sidebar-brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -.3px;
}
.sidebar-brand-sub {
    font-size: 0.65rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-top: 2px;
}

.sidebar-section {
    padding: 16px 16px 4px;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9ca3af;
    text-transform: uppercase;
}

.sidebar .nav-link {
    color: #4b5563;
    padding: 7px 14px;
    border-radius: 7px;
    margin: 1px 8px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.84rem;
    transition: background .15s, color .15s;
    text-decoration: none;
}
.sidebar .nav-link i { font-size: 1rem; flex-shrink: 0; color: #9ca3af; transition: color .15s; }
.sidebar .nav-link:hover { background: var(--sidebar-hover); color: var(--accent); }
.sidebar .nav-link:hover i { color: var(--accent); }
.sidebar .nav-link.active { background: var(--sidebar-active); color: var(--accent); font-weight: 600; }
.sidebar .nav-link.active i { color: var(--accent); }

.sidebar-user {
    margin-top: auto;
    padding: 12px 12px 16px;
    border-top: 1px solid #e8ecf0;
}
.sidebar-user .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s;
    color: #374151;
    font-size: 0.82rem;
    text-decoration: none;
    position: relative;
}
.sidebar-user .user-info:hover { background: var(--sidebar-hover); color: var(--accent); }
.sidebar-user .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; color: #fff;
    flex-shrink: 0;
}

/* ── MAIN CONTENT ────────────────────────── */
.main-content {
    margin-left: var(--sidebar-w);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1;
    /* Flex items default to min-width:auto, so a wide table stretches this
       column past the viewport even when it sits in a scroll container.
       min-width:0 lets the column shrink and the table scroll on its own. */
    min-width: 0;
}

/* Same rule one level down — page-area/topbar are column-flex children. */
.page-area, .topbar { min-width: 0; }

.topbar {
    height: var(--top-h);
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 500;
}
.topbar .page-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1f2e;
    margin: 0;
}
.topbar .topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Topbar logo stands in for the sidebar brand only while the sidebar is
   hidden behind the toggle; on wide screens the sidebar already shows it. */
.topbar-logo {
    display: none;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}
.topbar-logo img {
    height: 30px;
    max-height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}

.page-area {
    padding: 18px 20px;
    flex: 1;
}

.flash-zone { margin-bottom: 12px; }
.flash-zone .alert {
    border: none;
    border-radius: var(--radius);
    font-size: 0.84rem;
    padding: 9px 14px;
    box-shadow: var(--shadow);
}

/* ── KARTLAR ─────────────────────────────── */
.card {
    border: none !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    background: #fff;
}
.card-header {
    background: transparent !important;
    border-bottom: 1px solid #f0f2f7 !important;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 11px 14px !important;
}
.card-body { padding: 14px 16px !important; }

/* ── DASHBOARD / KPI ─────────────────────── */
.kpi-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.kpi-card:hover {
    border-color: rgba(79,142,247,.35);
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.kpi-label {
    color: var(--ink-soft);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.kpi-value {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
}
.kpi-value.rate { font-size: 1.75rem; }
.kpi-money {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
}
.kpi-sub { color: var(--ink-soft); font-size: .8rem; line-height: 1.45; }
.kpi-sub .baseline { color: var(--ink-faint); font-size: .74rem; }
.kpi-icon { color: var(--ink-faint); font-size: 1rem; line-height: 1; flex-shrink: 0; }
.kpi-value-row { display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap; }

.kpi-delta {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    font-size: .7rem;
    font-weight: 700;
    padding: .12rem .5rem;
    border-radius: 99px;
    line-height: 1.45;
    white-space: nowrap;
}
.kpi-delta i { font-size: .68rem; }
.kpi-delta.up   { background: var(--up-bg);   color: var(--up-fg); }
.kpi-delta.down { background: var(--down-bg); color: var(--down-fg); }
.kpi-delta.flat { background: var(--flat-bg); color: var(--flat-fg); }

/* Dönem sekmeleri — accent altı çizgi, sidebar paletiyle aynı */
.donem-tabs { gap: var(--sp-1); }
.donem-tabs .nav-link {
    color: var(--ink-soft);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: .5rem .9rem;
    font-size: .875rem;
    font-weight: 600;
    transition: color .15s ease, border-color .15s ease;
}
.donem-tabs .nav-link:hover { color: var(--accent-dark); }
.donem-tabs .nav-link.active {
    color: var(--accent-dark);
    background: transparent;
    border-bottom-color: var(--accent);
}

/* Dönem karşılaştırma tablosu */
.ozet-tablo th {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-soft);
    font-weight: 700;
    background: var(--surface-alt);
    border-bottom: 1px solid var(--line);
}
.ozet-tablo td {
    font-size: .875rem;
    color: var(--ink);
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--line-soft);
}
.ozet-tablo td.metric { font-variant-numeric: tabular-nums; text-align: right; font-weight: 600; }
.ozet-tablo td.donem { font-weight: 600; }
.ozet-tablo tbody tr:last-child td { border-bottom: none; }
/* Bootstrap paints --bs-table-bg on each cell, which covers a row background —
   so the highlight has to go on the td, not the tr. */
.ozet-tablo tbody tr.hlt > td { background: var(--accent-soft); }

/* Panel kartı — KPI ile aynı yüzey, hover yükseltmesi yok (büyük bloklar için) */
.panel-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.panel-card > .card-header,
.panel-card > .panel-header {
    background: transparent;
    border-bottom: 1px solid var(--line);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-2);
}

/* Panel başlığı — kart üstü tek stil (Hızlı İşlemler, Döviz, Duyurular…) */
.panel-baslik {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
}
.panel-baslik .ek { color: var(--ink-faint); font-weight: 500; font-size: .7rem; }

/* Duyuru listesi */
.duyuru-liste { max-height: 280px; overflow-y: auto; }
.duyuru-item { border-bottom: 1px solid var(--line-soft); border-left: 3px solid transparent; }
.duyuru-item:last-child { border-bottom: none; }
.duyuru-item.oncelik-acil   { border-left-color: #dc3545; }
.duyuru-item.oncelik-onemli { border-left-color: #ffc107; }
.duyuru-item.oncelik-normal { border-left-color: var(--accent); }
.duyuru-item .accordion-button { font-size: .85rem; color: var(--ink); }
.duyuru-item .accordion-button:not(.collapsed) { color: var(--accent-dark); background: var(--accent-soft); }
.duyuru-item .badge { font-size: .65rem; }
.duyuru-baslik { color: var(--ink); }
.duyuru-tarih { color: var(--ink-faint); font-size: .72rem; }
.duyuru-icerik { color: var(--ink-soft); font-size: .82rem; white-space: pre-line; }

/* ── TABLO ───────────────────────────────── */
.table { font-size: 0.82rem; margin: 0; }
.table thead th {
    font-size: 0.71rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #6b7280;
    font-weight: 700;
    background: #f8fafc;
    border-bottom: 1px solid #e8ecf0 !important;
    padding: 8px 12px;
    white-space: nowrap;
}
.table tbody td { padding: 8px 12px; vertical-align: middle; border-color: #f0f2f7; }
.table tbody tr:hover { background: #f8fafc; }
/* overflow:hidden KULLANMA — Bootstrap'in overflow-x:auto'sunu ezip
   dar ekranda tabloyu kaydırılamaz hale getirir, sütunlar kırpılır. */
.table-responsive {
    border-radius: 0 0 var(--radius) var(--radius);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

/* ── BUTONLAR ────────────────────────────── */
.btn { border-radius: 7px !important; font-size: 0.83rem; font-weight: 500; }
.btn-sm { padding: 4px 10px !important; font-size: 0.78rem !important; }
.btn-primary { background: var(--accent) !important; border-color: var(--accent) !important; }
.btn-primary:hover { background: var(--accent-dark) !important; border-color: var(--accent-dark) !important; }
.btn-outline-primary { color: var(--accent) !important; border-color: var(--accent) !important; }
.btn-outline-primary:hover { background: var(--accent) !important; color: #fff !important; }

/* ── FORM ────────────────────────────────── */
.form-control, .form-select {
    border-radius: 7px !important;
    border-color: #d1d5db !important;
    font-size: 0.85rem;
    padding: 6px 10px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(79,142,247,.15) !important;
}
.form-label { font-size: 0.81rem; color: #374151; font-weight: 500; margin-bottom: 3px; }
.input-group-text { border-color: #d1d5db !important; font-size: 0.85rem; }

/* ── BADGE ───────────────────────────────── */
.badge { border-radius: 6px !important; font-weight: 600; font-size: 0.71rem; }

/* ── DURUM badge ─────────────────────────── */
.durum-yeni         { background: #dbeafe; color: #1d4ed8; }
.durum-onaylandi    { background: #d1fae5; color: #065f46; }
.durum-hazirlaniyor { background: #f3e8ff; color: #6b21a8; }
.durum-kargoda      { background: #fef9c3; color: #854d0e; }
.durum-teslim       { background: #dcfce7; color: #14532d; }
.durum-iptal        { background: #fee2e2; color: #991b1b; }

/* ── FİLTRE KARTI ────────────────────────── */
.filter-card .card-body { padding: 9px 14px !important; }

/* Rapor filtre alanları — masaüstünde sabit, dar ekranda tam genişlik */
.filtre-tarih  { width: 140px; max-width: 100%; }
.filtre-select { width: 200px; max-width: 100%; }
@media (max-width: 575.98px) {
    .filtre-tarih, .filtre-select { width: 100%; }
    .filtre-form { width: 100%; }
}

/* ── FOOTER ──────────────────────────────── */
.app-footer {
    background: #fff;
    border-top: 1px solid #e8ecf0;
    padding: 8px 20px;
    font-size: 0.73rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── RESPONSIVE ──────────────────────────── */
/* Sidebar backdrop overlay (mobile/tablet) */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}
.sidebar-backdrop.show { opacity: 1; visibility: visible; }
body.sidebar-locked { overflow: hidden; }

@media (max-width: 991.98px) {
    .sidebar { width: var(--sidebar-w); transform: translateX(-100%); transition: transform .25s ease; }
    .sidebar.open { transform: translateX(0); box-shadow: 4px 0 16px rgba(0,0,0,.18); }
    .main-content { margin-left: 0; }
    .topbar { padding: 0 12px; }
    .topbar .sidebar-toggle { display: inline-flex !important; align-items: center; justify-content: center; }
    .topbar .page-title { font-size: .9rem; }
    .page-area { padding: 12px 12px; }
    .app-footer { padding: 8px 12px; font-size: .7rem; }
    .card-body { padding: 12px !important; }
    .card-header { padding: 10px 12px !important; }
    /* Form/grid alanları arasındaki dikey aralığı azalt */
    .row > [class*="col-"] { margin-bottom: .35rem; }
    /* Tablolarda hücreleri sarma, kartlarda yatay scroll kalsın */
    .table thead th, .table tbody td { padding: 6px 8px; font-size: .78rem; }
    /* Buton toolbar wrap */
    .btn-toolbar, .d-flex.gap-2, .d-flex.gap-3 { flex-wrap: wrap; }
    /* Modal mobile — near full-width */
    .modal-dialog { margin: .5rem; max-width: calc(100% - 1rem); }
    /* iOS Safari input zoom önleyici: font-size >= 16px */
    .form-control, .form-select, .input-group-text { font-size: 16px; }
    /* Genel başlık boyutları */
    h1 { font-size: 1.35rem; }
    h2 { font-size: 1.15rem; }
    h3 { font-size: 1.05rem; }
    h4 { font-size: .95rem; }
    /* Sağ üst tarih küçük ekranda gereksiz yer kaplıyor */
    .topbar .topbar-right .text-muted { display: none; }
    /* Sidebar gizli olduğu için logo burada görünür */
    .topbar-logo { display: flex; }
    .topbar-logo img { height: 26px; max-height: 26px; }
    .topbar .page-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
}

@media (max-width: 575.98px) {
    :root { --top-h: 48px; }
    .page-area { padding: 10px 10px; }
    .card-body { padding: 10px !important; }
    /* Kart görsel oranı görselin çok yer kaplamasını engeller — Urun/Index kartı için */
    .ratio.ratio-1x1 { --bs-aspect-ratio: 75%; }
    /* Tablo genelde taşabilir, .table-responsive yoksa kart içinde smooth scroll */
    .table-responsive, .card > .table-responsive { -webkit-overflow-scrolling: touch; }
    /* Küçük ekranda pagination sıkışabilir */
    .pagination { flex-wrap: wrap; gap: 2px; }
    .pagination .page-link { padding: 4px 8px; font-size: .78rem; }
    /* Sayfa başlığı + aksiyon butonu üst üste dizilsin */
    .page-header, .d-flex.justify-content-between.align-items-center { flex-wrap: wrap; gap: .5rem; }
    /* Butonlar tam genişliğe yakın tıklanabilir */
    .btn { min-height: 36px; }
    .btn-sm { min-height: 30px; }
    /* Sidebar biraz daha dar */
    :root { --sidebar-w: 260px; }
    .sidebar { max-width: 82vw; }
}

@media (min-width: 992px) {
    .topbar .sidebar-toggle { display: none !important; }
    .sidebar-backdrop { display: none !important; }
}

/* Uzun ürün başlıkları vb. taşmasın */
.text-break-word { word-break: break-word; overflow-wrap: anywhere; }

/* PRINT (fatura/teklif çıktısı için) sidebar/topbar gizlensin */
@media print {
    .sidebar, .topbar, .app-footer, .sidebar-backdrop { display: none !important; }
    .main-content { margin-left: 0 !important; }
    .page-area { padding: 0 !important; }
    .card { box-shadow: none !important; border: 1px solid #e5e7eb !important; }
}

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ── PROGRESS ────────────────────────────── */
.progress { border-radius: 99px; background: #f0f2f7; }
.progress-bar { border-radius: 99px; }

/* ── LIST GROUP (arama dropdown) ─────────── */
.list-group-item { font-size: 0.84rem; padding: 8px 12px; }
.list-group-item-action:hover { background: #f8fafc; }

/* ── FULLCALENDAR OVERRIDE ───────────────── */
#takvim .fc-toolbar-title { font-size: 1rem; font-weight: 600; }
#takvim .fc-button {
    font-size: .75rem !important;
    padding: 3px 10px !important;
    background: #fff !important;
    color: #4b5563 !important;
    border: 1px solid #d1d9e0 !important;
    box-shadow: none !important;
    border-radius: 6px !important;
}
#takvim .fc-button:hover { background: #f0f2f7 !important; }
#takvim .fc-button-active,
#takvim .fc-button-primary:not(:disabled).fc-button-active {
    background: #4f8ef7 !important;
    color: #fff !important;
    border-color: #4f8ef7 !important;
}
#takvim .fc-today-button {
    background: #e9f0fe !important;
    color: #3a7bd5 !important;
    border-color: #c2d4fa !important;
    font-weight: 600 !important;
}
#takvim .fc-col-header-cell-cushion {
    font-size: .75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    text-decoration: none;
}
#takvim .fc-daygrid-day-number {
    font-size: .8rem;
    color: #374151;
    text-decoration: none;
    padding: 4px 6px;
}
#takvim .fc-day-today {
    background: #eff6ff !important;
}
#takvim .fc-day-today .fc-daygrid-day-number {
    background: #4f8ef7;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    margin: 3px;
    padding: 0;
}
/* Hafta sonu sütunları */
#takvim .fc-day-sat,
#takvim .fc-day-sun { background: #fafbff; }
#takvim .fc-col-header-cell.fc-day-sat .fc-col-header-cell-cushion,
#takvim .fc-col-header-cell.fc-day-sun .fc-col-header-cell-cushion { color: #e05252; }
/* Resmi tatil hücresi */
#takvim .fc-day.tatil-gunu { background: #fff5f5 !important; }
/* Event pill */
#takvim .fc-event {
    border: none !important;
    border-radius: 4px !important;
    font-size: .72rem !important;
    padding: 1px 5px !important;
    font-weight: 500;
}
#takvim .fc-event-title { overflow: hidden; text-overflow: ellipsis; }
/* Liste görünümü */
#takvim .fc-list-event-title a { text-decoration: none; color: inherit; }
#takvim .fc-list-day-cushion { font-size: .78rem; background: #f0f2f7 !important; }
/* timeGrid saat satırı */
#takvim .fc-timegrid-slot { height: 2em !important; }
/* ── ÜRÜN ARAMA SONUÇ LİSTESİ (teklif/sipariş kalemleri) ─────────────── */
/* Panel, kendisinden sonra gelen Özet kartının üzerinde durmalı. Özet kartı
   Bootstrap sticky-top kullanıyor (z-index 1020); daha düşük bir değerde
   mobilde sonuç listesini örtüyordu. */
.arama-sonuc-panel {
    position: absolute;
    z-index: 1040;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Seçili (sepete eklenmiş) satır — sol kenarda vurgu + onay ikonu. */
.arama-sonuc-panel .sonuc-tik { display: none; flex: 0 0 auto; }
.arama-sonuc-panel .list-group-item-success .sonuc-tik { display: inline-block; }
.arama-sonuc-panel .list-group-item-success {
    background-color: #d1e7dd;
    border-left: 4px solid #198754;
}

@media (max-width: 991.98px) {
    /* Klavye açıkken görünür alan daralıyor; liste ekranı boğmasın. */
    .arama-sonuc-panel { max-height: min(320px, 45vh); }

    /* Dokunmatik cihazda :hover son dokunulan satırda takılı kalıyor ve
       yeşil seçim rengini gizliyordu — seçim ancak başka satıra dokununca
       fark ediliyordu. Sonuç listesinde hover vurgusunu kapat. */
    .arama-sonuc-panel .list-group-item-action:hover,
    .arama-sonuc-panel .list-group-item-action:focus {
        background-color: #fff;
    }
    .arama-sonuc-panel .list-group-item-success:hover,
    .arama-sonuc-panel .list-group-item-success:focus {
        background-color: #d1e7dd;
    }
}
