/* Base styles */
body {
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #212529;
    margin: 0;
    padding: 0;
  }
  
  /* Navbar */
  .navbar {
    background-color: #343a40;
  }
  
  .navbar-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
  }
  
  /* List items */
  .list-group-item {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Victim info */
  .victim-info {
    display: flex;
    align-items: center;
  }
  
  .victim-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 1rem;
  }
  
  .victim-details {
    display: flex;
    flex-direction: column;
  }
  
  .victim-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
  }
  
  .victim-meta {
    font-size: 0.85rem;
    color: #555;
  }
  
  /* Group badge */
  .badge.bg-success {
    background-color: #28a745 !important;
    font-size: 0.75rem;
    padding: 0.35em 0.6em;
  }
  
  /* Country flag */
  .country-flag {
    width: 32px;
    height: 20px;
    object-fit: contain;
    border-radius: 3px;
    border: 0px solid #ccc;
  }
  
  /* Search input */
  #search {
    margin-bottom: 1rem;
  }
  
  /* Flexbox for aligning the logo vertically in the middle */
.d-flex.align-items-start {
  display: flex;
  align-items: center; /* Vertically center the items */
}

.victim-item .me-3.flex-shrink-0 {
  margin-right: 15px; /* Ensure there's space between the logo and text */
}

