@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap');

body {
    color: white;
    /* font-family: 'Poppins', sans-serif; */
    background-color: black;
     
  }


  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }


  h2 {
    font-size: 1.5em;
    margin: 0.67em 0;
  }

  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
 
  h3 {
    font-size: 1.2em;
    margin: 0.67em 0;
  }
  

  p {
    margin-top: 20px;
  }


  .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  #pageBlock {
    display: none;
    
  }

  .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    background-color: black;
    padding: 4px 10px;
  }

  .menu-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
  }

  .upper-menu {
    color: white;
    background-color: black;
  }

  #container {
    display: flex;
    
  }

  .pane {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    /* To ensure that the pane does not grow out of the container */
  }

  #view {
    color: white;
    display: none;
    padding: 50px;
  }

  #displayBox {
    max-width: 540px;
    margin: auto;
    margin-bottom: 100px;
  }

  /* View elements */

  .prompt-image {
    border-radius: 10px;
  }


  .chatgpt-link {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    justify-content:center;
    border: 1px solid white;
    border-radius: 4px;
    padding: 5px;
    width: 200px;
    margin-left: auto;
  }



  .prompt-title  {
    font-size: 36px;
    font-weight: 800;
  }

  .prompt-short-description {
    margin-bottom: 16px;
    opacity: 0.8;
  }


  .prompt-description {
    margin-bottom: 36px;
  }

  .prompt-input {
    color: black;
    padding: 6px;
    margin: 15px 0;
    max-width: 540px;
  }

  .tag-box {
    display: flex;
    flex-direction: row;
    margin: 15px 0;
    gap: 6px;
  }

  .prompt-input-stack {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }

  .prompt-button {
    border: 1px solid white;
    padding: 6px;
    max-width: 540px;
  }

  .prompt-display {
    color: rgb(82, 153, 252);
    padding: 32px 22px 32px 22px;
    background-color: rgb(38, 37, 37);
    margin-bottom: 34px;
    border-radius:  0 0 8px 8px ;
    border-left: 1px solid rgb(82, 153, 252);
    border-bottom: 1px solid rgb(82, 153, 252);
    border-right: 1px solid rgb(82, 153, 252);
  }
  
   
  
  .prompt-copy-button {
    color: rgb(172, 172, 172);
    padding: 12px;
    padding-bottom: 0;
    background-color: rgb(38, 37, 37);
    border-radius:  8px 8px 0 0;
    text-align: right;
    border-left: 1px solid rgb(82, 153, 252);
    border-top: 1px solid rgb(82, 153, 252);
    border-right: 1px solid rgb(82, 153, 252);
  }

  .save-draft-button {
    color: rgb(255, 255, 255);
    padding: 10px;
    width: 120px;
    background-color: transparent;
  }

  .publish-button {
    color: rgb(255, 255, 255);
    background-color: rgb(96, 153, 239);
    padding: 10px;
    width: 120px;
  }



.example-prompt {
  margin-top: 40px;
  border-top: 1px solid rgb(52, 54, 57);
  font-size: 120%;
  padding: 20px 0 30px 0;
 }
 
 .chat-display {
  
   background: rgb(72, 91, 104);
   display: flex;
   flex-direction: column;
 }
 
 .avatar-icon-row {
   display: flex;
   flex-direction: row;
   padding-bottom: 40px;
 }
 
 .avatar-icon {
   padding: 0px 10px 0 4px;
   font-size: 30px;
   background-color: black;
   height: 40px;
   width: 40px;
   text-align: center;
   margin-right: 20px;
   border-radius: 6px;
 }
 
 .user {
   padding: 16px;
   background: rgb(44, 44, 44);
 }
 
 .chatgpt {
   padding: 16px;
   background: rgb(72, 91, 104);
 }


 .chat-display table {
  margin: 20px;
}
 

ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
}

li {
  display: grid; /* Use grid layout */
  grid-template-columns: min-content auto; /* First column for bullet, second for text */
  align-items: start; /* Align items to the start */
  margin-bottom: 1em;  /* Add line spacing between items */
}

li::before {
  content: '•'; /* Bullet symbol */
  margin-right: 1em; /* Spacing between bullet and text */
}

li > span {
  text-align: justify; /* Optional: Makes the text justified */
}