body, html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  .container {
    display: flex;
    height: 100%;
  }
  
  .left-pane, .right-pane {
    flex: 1;
    height: 100%;
  }
  
  .left-pane {
    overflow-y: auto;
    padding: 1rem;
    background-color: #F5F4F4;
  }
  
  .right-pane {
    border-left: 1px solid #ccc;
  }
  
  #preview-frame {
    width: 100%;
    height: 100%;
    border: none;
  }
  .promptListItem {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ccc;

    color: #364156;

    border-radius: 10px;
    cursor: pointer;
  }

  .selected {
    background-color: #ccc;
  }

/* New CSS class for the upvote button */
.upvoteButton {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 8px 12px;
    background-color: #ffff;
    color: #364156;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
    min-width: 100px; /* Set a minimum width for the button */
    box-shadow: none;

    border: none;
  }

  .url-pill {
    background-color: #eee;
    border-radius: 25px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
  }

  #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;
  }

  .copy-btn {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
  }

  /* Hover effect for the upvote button */
  .upvoteButton:hover {
      background-color: #364156;
      color: #fff;
  }

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

  .makeYourOwnPromptButton {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 800;
    padding: 8px 12px;
    background-color: #4caf50;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
    min-width: 100px; /* Set a minimum width for the button */
    box-shadow: none;

    border: none;
  }

  .explorePromptsTitle{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #364156;
    margin-left: 45px;
  }
