body { 
    padding: 2rem; 
    font-family: sans-serif; 
  }
  
  h1, h2, h3 { 
    margin-top: 1.5rem; 
    margin-bottom: 1rem; 
  }
  
  .tab-content { 
    margin-top: 1rem; 
  }
  
  .file-input-label { 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
  }
  
  .form-section {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }
  
  .select2-container .select2-selection--multiple { 
    min-height: 38px; 
  }
  
  /* Sortable list styles */
  .sortable-item {
    cursor: grab;
    background-color: #fff;
    transition: background-color 0.2s;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  .sortable-item:hover { 
    background-color: #f5f5f5; 
  }
  
  .sortable-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
  }
  
  .drag-handle { 
    margin-right: 8px; 
    color: #999; 
  }
  
  .sortable-ghost { 
    opacity: 0.5; 
    background-color: #c8ebfb; 
  }