.chatgpt-text-icon{
  display: flex;
  align-items: center;
}

/* .top-nav-bar-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  position: fixed;
  gap: 570px;
} */


.top-nav-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  position: fixed;
  top: 0;
  left: 57px;  /* account for fixed left nav width */
  right: 0;
  width: auto;  /* or remove width entirely and let it stretch */
  height: 60px;  /* give it an explicit height */
  background-color: rgb(33, 33, 33);  /* match your body bg or set as needed */
  z-index: 100;  /* ensure it stays on top */
} 


.chatgpt-text-icon{
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.gpt-text{
  color: white;
  font-size: 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.button-get-plus{
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgb(55, 54, 105);
  border: none;
  color: rgb(220, 219, 246);
  padding: 8px;
  white-space: nowrap;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  border-radius: 24px;
  padding-left: 12px;
  padding-right: 12px;
}