.custom-file-upload {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .custom-file-upload-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .custom-file-upload-box {
    border: 2px dashed #bbb;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s;
    background: #fafafa;
  }
  .custom-file-upload-box:hover {
    border-color: #888;
  }
  .custom-file-upload-box svg {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
    color: #888;
  }
  .custom-file-upload input[type='file'] {
    display: none;
  }
  
  .custom-textarea,
  .custom-text-input {
    width: 100%;
    border: 1px solid #bbb;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.2s;
  }
  .custom-textarea:focus,
  
  .custom-text-input:focus {
    border-color: #888;
    outline: none;
  }

  