/* styles.css */
body {
    font-size: .875rem;
    background-color: #f8f9fa;
    display: none;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  }
  
  .sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .sidebar .nav-link {
    font-weight: 500;
    color: #333;
    padding: .75rem 1rem;
    margin-bottom: .25rem;
    border-radius: .25rem;
  }
  
  .sidebar .nav-link:hover {
    background-color: rgba(0, 0, 0, .05);
  }
  
  .sidebar .nav-link.active {
    color: #2470dc;
    background-color: rgba(36, 112, 220, .1);
  }
  
  .sidebar .nav-link i {
    margin-right: .5rem;
  }
  
  main {
    padding-top: 1.5rem;
  }
  
  .navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  }
  
  .card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1rem;
  }
  
  .card-header {
    background-color: rgba(0, 0, 0, 0.03);
    font-weight: 500;
  }
  
  .table {
    margin-bottom: 0;
  }
  
  .table th {
    font-weight: 500;
  }
  
  .btn-sm {
    padding: .25rem .5rem;
    font-size: .75rem;
  }

  /* İşlem butonları için yeni stiller */
  .action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .action-btn {
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .action-btn i {
    margin-right: 5px;
  }

/* Ortak müşteri satırları için arka plan rengi (Daha güçlü kural) */
.table > tbody > tr.ortak-musteri-row {
  background-color: #e7f3fe !important;
}

/* Fare ile üzerine gelince de rengin korunması için */
.table-hover > tbody > tr.ortak-musteri-row:hover {
    background-color: #d0e8fc !important; /* Biraz daha koyu bir ton */
}