.user-profile {
  height: 400px;
  padding: 10px;
  justify-content: center;
  border-radius: 10px;
  background-color: white;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.primary {
  width: auto;
  height: auto;
  background-color: white;
  border-radius: 12px;
  border-style: hidden;
  box-shadow: var(--box-shadow);
  padding: 10px;
  align-items: center;
  overflow: visible;
}

.primary.top {
  margin-top: 30px;
}

.message {
  text-align: center;
  height: 30px;
  color: var(--main-color);
}

.page-title {
  color: #333;
  font-weight: 900;
  font-size: 30px;
  display: flex;
  align-items: center;
}

.top-menu {
  background-color: var(--top-menu-bg);
  margin-bottom: 10px;
  position: sticky;
  top: 0;
  z-index: 101;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 8px 15px;
  display: flex;
  align-items: center;
}

.top-menu-img {
  padding: 15px;
  width: 160px;
  font-family: Inter-Regular !important;

}

div[id*="side-menu"] {
  background-color: var(--side-menu-bg);
  color: var(--side-menu-color);
  position: fixed;
  top: 57px;
  height: calc(100% - 58px);
  ;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 4px 0px 10px var(--side-menu-color);
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  transform: translate(-50%, -50%);
}

.login-img {
  width: 170px;
  margin-bottom: 50px;
  align-self: center;
}

.login-client-services {
  text-align: center;
  margin-top: -40px;
  margin-bottom: 50px;
  color: red;
}

.left-stack {
  display: inline-flex;
  align-items: flex-start;
}

.authpage-text {
  text-align: left;
  font-family: Deacon-Bold !important;
  font-size: 4.7rem;
  font-weight: bold;
  line-height: 1.1em;
  color: black;
}

.authpage-text.suffix {
  color: #F78B27 !important;
}

.main-body {
  min-width: 1390px;
  max-width: 2250px;
  margin: auto;
}

.full-width {
  width: 100%;
}

.full-width>.full-width {
  width: auto;
}

.half-width {
  width: calc(50% - 8px);
}

.half-width>.half-width {
  width: auto;
}

.third-width {
  width: calc(33.3333% - 11px);
}

.third-width>.third-width {
  width: auto;
}

.report-width-60 {
  width: calc(60% - 8px);
}

.report-width-60>.report-width-60 {
  width: auto;
}

.report-width-40 {
  width: calc(40% - 8px);
}

.report-width-40>.report-width-40 {
  width: auto;
}

.report-width-20 {
  width: calc(20% - 8px);
}

.report-width-20>.report-width-20 {
  width: auto;
}

.report-width-25 {
  width: calc(25% - 12px);
}

.report-width-25>.report-width-25 {
  width: auto;
}

.scorecards-div {
  justify-content: space-between;
}

.report-height {
  height: 350px;
}

.report-grid-height {
  height: 330px !important;
}

.report-grid-height-w-name {
  height: 290px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

.marketing-stream {
  height: 1000px;
  width: 900px;
  margin: auto;
}

.home {
  height: 400px;
  width: 1000px;
  margin: auto;
}

.auth-tbl {
  width: 1400px;
  margin: auto;
}

.misc-info {
  color: red;
  font-size: 10px;
}

.misc-info.brand-metrics {
  line-height: 5px;
  align-self: flex-start;
}

.offcanvas-title {
  font-size: 2rem;
  font-family: Deacon-Bold !important;
}

.clipboard-btn {
  padding: 0px 10px;
  width: 50px;
  height: 30px;
  cursor: pointer;
  border: 1px solid var(--side-menu-color);
  border-radius: 1.5rem;
  align-content: center;
}

.clipboard-btn>i {
  margin-left: 7px;
}

.DateInput {
  width: 165px;
}

.img-updates-modal {
  margin-left: 60px;
  margin-right: 30px;
  width: fit-content;
  max-width: 90%;

}

.gpt-main-output-div {
  white-space: pre-wrap;
  height: 500px;
  overflow-y: auto;
}

.gpt-output {
  background-color: #c9dde4;
  padding: 1rem 0 1rem 1rem;
  border-radius: 8px;
}

.gpt-input-box {
  background: gainsboro;
  display: inline-block;
  padding: 10px;
  border-radius: 20px;
}

.gpt-default-btns-group {
  margin: 100px 0 200px 0;
}

.gpt-chat-fade {
  animation: fadeChatReplace 0.5s ease-in-out;
}


@keyframes fadeChatReplace {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
    }

.gpt-chat-history-div {
  overflow-y: auto;
  height: 800px;
  box-shadow: 0px 0px 10px 0px var(--side-menu-color);
    border-radius: 10px;
}

.chat-thread-row:hover,
.chat-thread-row.active {
  background-color: #b4c6d8;
}

.chat-thread-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px;
  margin: 5px;
  border-radius: 8px;
  background-color: #e2e8f0;
  transition: background-color 0.2s ease;
  overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .chat-actions {
    display: none;
    gap: 0px;
  }
  
  .chat-thread-row:hover .chat-actions {
    display: flex;
  }
  
  .chat-title {
    flex: 1;
    overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

input[id*="chat-edit-input"] {
  width: 250px;
}
.chat-input-wrapper {
  position: relative;
  width: 100%;
}

.chat-attach-btn {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.chat-textarea {
  width: 100%;
  height: 90px;
  border-radius: 10px;
  resize: none;
  padding-right: 70px;
  box-sizing: border-box;
}

.chat-attach-btn:hover {
  color: #111;
}