body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
    
    /* Form label styling - bold and consistent */
    label {
      font-weight: 600 !important;
      font-size: 0.875rem !important;
      line-height: 1.25rem !important;
      color: #111827 !important;
    }
    
    /* Input and select styling */
    input, select, textarea {
      font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
      font-size: 0.875rem !important;
    }

    .multi-select-input {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      align-items: center;
      padding: 0.5rem 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;
      background: white;
      cursor: text;
    }

    .multi-select-input:focus-within {
      border-color: #7a5ecb;
      box-shadow: 0 0 0 3px rgba(122, 94, 203, 0.1);
    }

    .chip-area {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }

    .chip-search {
      flex: 1;
      min-width: 120px;
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    
    /* Enhanced multi-select chips */
    .rs-multi-wrap {
      margin-top: 0.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      min-height: 2rem;
    }
    
    .rs-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.375rem 0.75rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      line-height: 1.25rem;
      background: #eef2ff;
      color: #3730a3;
      font-weight: 500;
      transition: all 0.15s ease;
    }
    
    .rs-chip:hover {
      background: #e0e7ff;
    }
    
    .rs-chip .x {
      cursor: pointer;
      opacity: 0.7;
      font-weight: 700;
      font-size: 1.125rem;
      line-height: 1;
      transition: opacity 0.15s ease;
    }
    
    .rs-chip .x:hover {
      opacity: 1;
    }
    
    /* Unified select styling (Chrome + Safari + Firefox) */
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;

      background-color: #ffffff;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;

      padding-right: 2.5rem; /* space for arrow */
      font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
      font-size: 0.875rem !important;

      /* Tally-style arrow */
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6l4 4 4-4'/></svg>");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 16px;
    }

    select:focus {
      outline: none;
      border-color: #7a5ecb;
      box-shadow: 0 0 0 3px rgba(122, 94, 203, 0.1);
    }

    /* Search-enhanced multi-select */
    .multi-select-wrapper {
      position: relative;
    }
    
    .multi-select-search {
      width: 100%;
      padding: 0.5rem 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      transition: all 0.15s ease;
    }
    
    .multi-select-search:focus {
      outline: none;
      border-color: #7a5ecb;
      box-shadow: 0 0 0 3px rgba(122, 94, 203, 0.1);
    }
    
    .multi-select-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 16rem;
      overflow-y: auto;
      background: white;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;
      margin-top: 0.25rem;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      z-index: 50;
      display: none;
    }
    
    .multi-select-dropdown.active {
      display: block;
    }
    
    .multi-select-option {
      padding: 0.625rem 0.75rem;
      cursor: pointer;
      font-size: 0.875rem;
      transition: background 0.1s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .multi-select-option:hover {
      background: #f9fafb;
    }
    
    .multi-select-option.selected {
      background: #eef2ff;
      color: #3730a3;
      font-weight: 500;
    }
    
    .multi-select-option.hidden {
      display: none;
    }
    
    .multi-select-option input[type="checkbox"] {
      width: 1rem;
      height: 1rem;
      border-radius: 0.25rem;
      border: 1px solid #d1d5db;
      cursor: pointer;
    }
    
    .multi-select-option input[type="checkbox"]:checked {
      accent-color: #7a5ecb;
    }
