body {
    background-color: #f8f9fa;
    padding-top: 70px;
  }
  
  .navbar-brand img {
    height: 30px;
    margin-right: 10px;
  }
  
  .law-card {
    transition: transform 0.2s;
  }
  
  .law-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .badge-wanted {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
  
  .badge-fib {
    background-color: #0d6efd;
    color: white;
  }
  
  .badge-sta {
    background-color: #198754;
    color: white;
  }
  
  .footer {
    margin-top: 50px;
    padding: 20px 0;
    background: #343a40;
    color: #f8f9fa;
  }
  
  /* Form styling */
  label {
    font-weight: 500;
  }
  
  .form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  /* Table styling */
  .table-responsive {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.25rem;
  }
  
  .table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
  }
  
  /* Custom switch styling */
  .form-switch .form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
  }
  
  .form-switch .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  }