.text-field-box {
    position: relative;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 50px;
    border: 2px solid white;
    margin: 10px;
    padding-right: 75px;
    padding-left: 10px;
    display: none;
  }
  
  .text-field-title {
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--bg-color);
    padding: 0 10px;
  }
  
  .copy-button, .paste-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .copy-button:hover, .paste-button:hover {
    background-color: var(--primary-color-darker);
  }

  .text-field-box textarea:first-of-type {
    border: none;
    outline: none;
    resize: none;
    width: 85vw;
    background-color: transparent;
    color: white;
    align-content: center;
  }