.nav-container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  
  .nav-item {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    background: white;
    color: #64748b;
    transition: all 0.2s;
  }
  
  .nav-item.active {
    background: #38b2ac;
    color: white;
    border-color: #38b2ac;
  }
  
  .form-container {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .form-row {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a202c;
  }
  
  .required {
    color: #e53e3e;
    margin-left: 2px;
  }
  
  .form-select,
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.875rem;
    width: 100%;
  }
  
  .form-textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .add-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: white;
    color: #1a202c;
    cursor: pointer;
    font-size: 0.875rem;
  }
  
  .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.875rem;
  }
  
  .action-buttons {
    display: flex;
    gap: 0.5rem;
  }
  
  .icon-button {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: #64748b;
  }
  
  .icon-button:hover {
    color: #1a202c;
  }
  
  