body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  .container {
    display: flex;
    height: 100%;
  }
  .left, .right {
    flex: 1;
    height: 100%;
  }
  .left {
    padding: 2.5rem;
    box-sizing: border-box;
  }
  .right {
    border-left: 1px solid #ccc;
    display: flex;
    flex-direction: column;
  }
  .iframe-container {
    flex-grow: 1;
    position: relative;
  }
  iframe {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .url-pill {
    background-color: #eee;
    border-radius: 25px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
  }
  .copy-btn {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
  }
  #promptLabel {
    display: block;
    /* margin-bottom: 20px; */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2b2f43;
  } 
  #prompt{
    display: block;
    width: 100%;
    height: 25%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #2b2f43;
  }
  .submitButton {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
  }
  #updatePromptLabel{
    display: block;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2b2f43;
  }
  #updatePrompt {
    display: block;
    width: 100%;
    height: 50%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #2b2f43;
  }
  #updateSubmit {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
  }
  #progressBarContainer {
    margin-top: 1rem;
  }
  #progressBar {
    transition: width 0.5s;
  }

  #url-pill{
    font: 14px/1.5 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  }

  #urlPillContainer {
    text-align: right;
  }

  #styleTransferContainer {
    margin-top: 20px;
  }
  #styleTransferLabel {
    display: block;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2b2f43;
  }
  #styleTransferInput {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #2b2f43;
  }
  #styleTransferSubmit {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 20px;
  }

  /* Add disabled class style */
  .disabled {
    /* background-color: #8c93a1 !important; */
    /* background-color: #edf0e3 !important; */
    background-color: #808484 !important;
    cursor: not-allowed !important;
  }

  /* Update History Section */
  .list-container {
    padding: 10px;
  }
  .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #edf0e3; */
    background-color: #eee;
    border: 1px solid #808484;
    color: #808484;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative; /* Add position: relative; to the .list-item class */
  }
  .list-item:last-child .remove-btn {
    display: inline-block;
  }
  .refresh-btn, .remove-btn {
    padding: 5px 10px;
    border: none;
    background: none;
    cursor: pointer;
    display: none;
  }
  .remove-btn {
    color: #A5234A;
    margin-left: 10px;
  }
  .refresh-btn {
    color: #808484;
    display: inline-block;
    position: absolute; /* Add position: absolute; to the .refresh-btn class */
    right: 80px; /* Set the fixed right value for .refresh-btn */
  }
  /* End of update history section */

  .titleArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .exploreCTA{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #8C93A1;
    cursor: pointer;
    text-decoration: none;
  }

  .goToExplorePageButton:hover{
    color: #4caf50;
  }