  
  .filter-form-container {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
  }
  
  .filter-form-container h2 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .filter-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 400;
    color: #6c757d;
  }
  
  .filter-form .select2-container .select2-selection--single {
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
  }
  
  .filter-form .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 10px;
    right: 10px;
  }
  
  .filter-form .btn {
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    background-color: #001e6c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #00184f;
  }
  