.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .custom-label {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }
  
  .custom-label:hover {
    background-color: #0056b3;
  }
  
  #file-upload {
    display: none; /* ซ่อน input type="file" */
  }
  
  #file-name {
    font-size: 14px;
    color: #555;
  }
  