/* styles.css */
/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
  } */
  
  .container {
    display: none;
    gap: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5000;
  }
  
  .preferences {
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .preferences label {
    display: block;
    margin-top: 10px;
  }
  
  .preferences input,
  .preferences select {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
  }
  
  .preview {
    flex-grow: 1;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }