/* 
Author              Jixin Jia (Gin)
Bootstrap Version   v5.2.3
Last updated        2023.04.11


TABLE OF CONTENTS

Global Variables
Starter Template - LAYOUT
Starter Template - UTILITIES
Starter Template - STYLE & COLORS
Starter Template - FONTS
Starter Template - NAV BAR
Starter Template - CUSTOM MODAL
Starter Template - DYNAMIC LAYOUT & FLEX POINT
*/



/* Global variables */
:root {
  --theme-color: rgb(117, 58, 193);
  --theme-black: #222;
  --theme-background: #F2F6FC;
  --bg-lightgray: #E2E2E2;
  --bg-white: #fff;
  --textarea-black: rgb(63, 63, 63);
  --border: 1px solid #c5ccd6;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --bubble-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  --bubble-gradient: linear-gradient(138deg, rgba(2, 0, 36, 0.91) 12%, rgba(2, 0, 36, 0.78) 79%, rgba(102, 100, 100, 1) 100%);
  --bg-gradient: linear-gradient(138deg, rgba(2, 0, 36, 0.91) 12%, rgba(2, 0, 36, 0.78) 79%, rgba(102, 100, 100, 1) 100%);

  /* --bg-gradient: linear-gradient(90deg, rgba(6, 81, 167, 0.8) 0%, rgba(79,23,210,.95) 100%); */
  --bg-gradient-light: linear-gradient(90deg, rgba(50, 108, 184, 0.9) 0%, rgba(79, 23, 210, .9) 100%);
  --mic-wave: 5px 5px 15px #999, 0 0 0 0 rgba(57, 181, 226, 0.85);
}

/* Page Transition Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Apply fade-in animation to sidenav menu */
.sidenav-menu {
  animation: fadeIn 0.5s ease-out;
}

/* Prevent flash of unstyled content */
.sidenav-menu {
  opacity: 0;
  animation-fill-mode: forwards;
}

.navbar-nav {
  background-color: white;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

/* Web Fonts - Segoe UI Variable */
@font-face {
  font-family: 'Segoe UI Variable Display';
  src: url('../segoe-ui/Segoe UI Variable Static Display.eot');
  src: url('../segoe-ui/Segoe UI Variable Static Display.eot?#iefix') format('embedded-opentype'),
    url('../segoe-ui/Segoe UI Variable Static Display.woff2') format('woff2'),
    url('../segoe-ui/Segoe UI Variable Static Display.woff') format('woff'),
    url('../segoe-ui/Segoe UI Variable Static Display.svg#SegoeUIVariableStaticDisplay') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI Variable Display';
  src: url('../segoe-ui/Segoe UI Variable Static Display Light.eot');
  src: url('../segoe-ui/Segoe UI Variable Static Display Light.eot?#iefix') format('embedded-opentype'),
    url('../segoe-ui/Segoe UI Variable Static Display Light.woff2') format('woff2'),
    url('../segoe-ui/Segoe UI Variable Static Display Light.woff') format('woff'),
    url('../segoe-ui/Segoe UI Variable Static Display Light.svg#SegoeUIVariableStaticDisplayLight') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI Variable Display';
  src: url('../segoe-ui/Segoe UI Variable Static Display Semilight.eot');
  src: url('../segoe-ui/Segoe UI Variable Static Display Semilight.eot?#iefix') format('embedded-opentype'),
    url('../segoe-ui/Segoe UI Variable Static Display Semilight.woff2') format('woff2'),
    url('../segoe-ui/Segoe UI Variable Static Display Semilight.woff') format('woff'),
    url('../segoe-ui/Segoe UI Variable Static Display Semilight.svg#SegoeUIVariableStaticDisplaySemilight') format('svg');
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI Variable Display';
  src: url('../segoe-ui/Segoe UI Variable Static Display Semibold.eot');
  src: url('../segoe-ui/Segoe UI Variable Static Display Semibold.eot?#iefix') format('embedded-opentype'),
    url('../segoe-ui/Segoe UI Variable Static Display Semibold.woff2') format('woff2'),
    url('../segoe-ui/Segoe UI Variable Static Display Semibold.woff') format('woff'),
    url('../segoe-ui/Segoe UI Variable Static Display Semibold.svg#SegoeUIVariableStaticDisplaySemibold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe UI Variable Display';
  src: url('../segoe-ui/Segoe UI Variable Static Display Bold.eot');
  src: url('../segoe-ui/Segoe UI Variable Static Display Bold.eot?#iefix') format('embedded-opentype'),
    url('../segoe-ui/Segoe UI Variable Static Display Bold.woff2') format('woff2'),
    url('../segoe-ui/Segoe UI Variable Static Display Bold.woff') format('woff'),
    url('../segoe-ui/Segoe UI Variable Static Display Bold.svg#SegoeUIVariableStaticDisplayBold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* Starter Template - LAYOUT */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: var(--theme-background);
  font-family: "Segoe UI Variable Display",
    "Segoe UI Variable Display",
    "Segoe UI",
    segoeui,
    "Helvetica Neue",
    helvetica,
    arial,
    sans-serif;
  font-size: 1.05em;
  -webkit-font-smoothing: antialiased;
}

.h-right {
  display: flex;
  justify-content: flex-end;
}

.h-center {
  justify-content: center;
  display: flex;
}

.h-center-block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.v-center-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.h-center-block {
  align-items: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-v-center {
  vertical-align: middle;
}

.divider {
  margin: 2.5rem 2.5rem;
}

.fw-bolder-2 {
  font-weight: 600;
}

/* Starter template - UTILITIES */
.invisible {
  visibility: hidden;
}

.hide {
  display: none;
}

.b-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.zoom {
  transition: transform .3s;
  /* Animation */
}

.zoom:hover {
  transform: scale(1.003);
}

.shift-right {
  transition: transform .3s;
  /* Animation */
}

.shift-right:hover {
  transform: translate(5px, 0);
}



/* Starter Template - STYLE & COLORS */
.blue {
  background-color: blue;
}

.red {
  background-color: red;
}

.yellow {
  background-color: yellow;
}

.green {
  background-color: green;
}

.gray {
  background-color: gray;
}

.pointer {
  cursor: pointer;
}

.pointer_disabled {
  cursor: not-allowed !important;
  pointer-events: all !important;
}

a {
  text-decoration: none;
}

.no-link {
  text-decoration: none !important;
  color: inherit;
}

.no-link:hover {
  text-decoration: none;
  /* color: inherit; */
}

.animated-loader {
  border-radius: 10em;
  height: 12px;
  width: 150px;
  --c: no-repeat linear-gradient(#6100ee 0 0);
  background: var(--c), var(--c), #d7b8fc;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}

@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0
  }

  66% {
    background-position: 250% 0, -150% 0
  }

  100% {
    background-position: 250% 0, 250% 0
  }
}

.animated-gradient-bg {
  background: linear-gradient(-45deg, #d05ef3, #ee5791, #24a9d1, #25bd99, #96df42, #d05ef3, #ee5791, #24a9d1, #25bd99, #96df42, #d05ef3, #ee5791, #24a9d1);
  background-size: 900% 900%;
  animation: gradient 12s linear infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

.animated-gradient-black-bg {
  background: linear-gradient(-45deg, #000, #333, #555, #444, #111, #222, #333, #444, #222, #111, #000);
  background-size: 900% 900%;
  animation: gradient 12s linear infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}


/* Starter Template - FONTS */
.text-xxs {
  font-size: 0.7rem;
}

.text-xs {
  font-size: 0.8rem;
}

.text-s {
  font-size: 0.9rem;
}

.text-m {
  font-size: 1rem;
}

.text-l {
  font-size: 1.2em;
}

.text-xl {
  font-size: 1.3em;
}

.text-xxl {
  font-size: 1.4rem;
}

.text-xxxl {
  font-size: 1.6rem;
}

.text-2xl {
  font-size: 2rem;
}

.text-3xl {
  font-size: 3rem;
}

.text-4xl {
  font-size: 4rem;
}

.text-5xl {
  font-size: 5rem;
}

.text-lightgray {
  color: var(--bg-lightgray);
}

.text-black {
  color: #333;
}

.text-gray {
  color: gray;
}

.text-white {
  color: white;
}

.text-lightgray {
  color: lightgray;
}

.text-red {
  color: red;
}

.text-blue {
  color: blue;
}

.text-yellow {
  color: yellow;
}

.text-green {
  color: green;
}

.text-theme {
  color: var(--theme-color);
}

.text-light {
  font-weight: light;
}

.text-lighter {
  font-weight: 400;
}


/* Starter Tempalte - CUSTOM MODAL */
.modal-large-fluid {
  max-width: inherit;
  width: 70%;
}

#div_submit {
  min-height: 250px;
}

/* Nav */
.nav-logo-container {
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  text-decoration: none;
  color: #242424;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 124px;
}

.nav-logo:hover {
  text-decoration: none;
  font-weight: 600;
}

.nav-logo img {
  max-width: 140px;
  max-height: px;
  margin-right: 8px;
}

/* Main UI - Common */
main::before {
  content: "";
  display: block;
  height: 48px;
  width: 100%;
  background-color: white;
  position: absolute;
  top: -48px;
}

.header-subline {
  font-size: 1.1em;
  color: #222;
}

.header-line {
  font-size: 2.5em;
}

.blue-dot-loader {
  max-width: 170px;
}

.toast-image {
  padding: 1em;
}

.md-contents pre,
.md-contents code {
  white-space: normal !important;
}

.md-contents img {
  width: 100%;
  height: auto;
}

.business-tooltip {
  --bs-tooltip-bg: #111;
  --bs-tooltip-color: #ffffff;
}

.business-tooltip .tooltip-inner {
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.875rem;
  max-width: 350px;
  text-align: center;
  line-height: 1.4;
}

/* Fix tooltip arrows for all directions */
.business-tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--bs-btn-hover-bg);
}

.business-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: var(--bs-btn-hover-bg);
}

.business-tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: var(--bs-btn-hover-bg);
}

.business-tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: var(--bs-btn-hover-bg);
}

/* Custom Sidebar Footer Link */
.feedback-link {
  color: inherit !important;
  text-decoration: none !important;
}

.feedback-link:hover {
  color: var(--theme-color) !important;
  text-decoration: none !important;
}

.feedback-link:focus {
  color: var(--theme-color) !important;
  text-decoration: none !important;
}

/* Override collapse arrow styling for feedback link */
.feedback-link .sidenav-collapse-arrow {
  opacity: 1 !important;
  transform: none !important;
}

.feedback-link .sidenav-collapse-arrow i {
  transform: none !important;
}

/* Ensure sidenav-footer-content takes full width for proper link stretching */
.sidenav .sidenav-footer .sidenav-footer-content {
  width: 100%;
}

.sidenav-footer-title.nav-subtitle {
  width: 100% !important;
}

/* Login */
.bg-login {
  background-image: url(../images/background_new.svg);
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-login-image {
  background: url(../static/images/login.jpg);
  background-position: center;
  background-size: cover;
}

.bg-register-image {
  background: url(../static/images/register.jpg);
  background-position: center;
  background-size: cover
}

.bg-password-image {
  background: url(../static/images/forgot_password.jpg);
  background-position: center;
  background-size: cover
}

.login-in-header {
  font-weight: 400;
  font-size: 2.2em;
}

.login-card {
  border-radius: 0 !important;
  box-shadow: 0 2px 6px #0003;
}

.subscribe-form-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
}

.subscribe-form {
  position: relative;
  width: 80%;
}

.subscribe-form input {
  height: 3.5em;
}

.subscribe-form #alias {
  background: #FDFCFB;
  font-family: inherit;
  color: #737373;
  border-radius: 5em;
}

.subscribe-form #btn_submit {
  position: absolute;
  right: .3em;
  border-radius: 5em;
  padding: initial;
  height: 2.8em;
  width: 6em;
}

.subscribe-form .solid-btn-disabled {
  color: #444;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 5em;
  cursor: not-allowed;
}

.subscribe-form .solid-btn {
  color: #fff;
  background: #6730e3;
  border: 1px solid #6730e3;
  border-radius: 5em;
  transition: 0.3s ease;
}

.subscribe-form .solid-btn:hover {
  background: rgba(103, 48, 227, .75);
}

#div_instruction {
  line-height: 1.4em;
  height: 2.5em;
}

/* Main UI - Markdown Editor (MDE) */
.editor-preview-full img,
.editor-preview img {
  max-width: 100% !important;
  height: auto !important;
}

.editor-preview-full,
.editor-preview,
.editor-preview-active {
  overflow-y: auto !important;
}


/* Main UI - Conversation */
#div_conversation {
  overflow: auto;
  max-height: 75vh;
}

.conversation {
  padding: 1em 1.5em 0 1em;
  margin: 0 0 0 0;
  max-height: 75vh;
  overflow-x: hidden;
  overflow-y: audo;
}

.chat-bubble {
  font-size: 1em;
  line-height: 1.2em;
  padding: 1.2em;
  border-radius: .6em;
  max-width: 90%;
  background: rgba(1, 1, 125, .35);
  color: var(--theme-black) !important;
  white-space: break-spaces;
}

.chat-bubble-user {
  font-size: 1em;
  line-height: 1.2em;
  padding: .8em;
  border-radius: .6em;
  max-width: 75%;
  background: #555 !important;
  white-space: break-spaces;
  color: #eee !important;
}

.user-bubble {
  width: 48px;
  height: 48px;
  border-radius: 5rem;
}

.btn-context-template {
  height: 4em;
  width: 10em;
  cursor: pointer;
}

.copilot-textarea,
.copilot-textarea:focus {
  color: #212832;
  border: var(--border);
  font-size: initial;
  line-height: normal;
}

.btn-card-action {
  /* background-color: #405a83; */
  color: #333;
  border: none;
}

.btn-card-action:hover {
  /* background-color: #aaa; */
  color: #2268cf;
  border: none;
}

.btn-card-action:active {
  border: none;
}

.rotate:hover {
  /* rotate object by 90 degree and animate it */
  transform: rotate(90deg);
  transition: transform .5s;
  /* Animation */
}

.viewport-textarea {
  height: 30em;
}

.viewport-rewrite {
  margin: 2.1em auto;
}

/* Main UI - Copilot Analysis */
.btn-action-menu {
  height: 2.5em !important;
  width: 2.5em !important;
}

.aoai-inline-icon {
  height: 12px;
  margin-right: .2em;
}

.btn-ask-copilot {
  border-top-right-radius: 1.2em;
  border-bottom-right-radius: 1.2em;
  width: 70px;
  line-height: 1.3em;
}

.textarea-ask-copilot {
  border-top-left-radius: 1.2em;
  border-bottom-left-radius: 1.2em;
}

.display-panel {
  min-height: calc(45vh + 193px);
  overflow-y: auto;
  overflow-x: hidden;
  /* padding-right: .1em !important; */
}

.analysis-panel {
  padding-right: .1em !important;
  padding-left: 1.4em !important;
}

#div_command {
  padding: 0 0 0 0 !important;
}

.command-header {
  font-size: .9em;
  margin: .3em 0;
}

.command-info {
  line-height: .75em;
  font-size: .78em;
}

.command-info-badge {
  font-size: .8em;
  padding: .15em .5em !important;
  margin: 0 !important;
}

.command-paragraph {
  background: linear-gradient(90deg, rgba(238, 238, 238, .8) 0%, rgba(225, 231, 238, .9) 100%);
  border-radius: .5em;
  font-size: 1.05em;
  padding: .7em 1.1em .7em .9em;
  margin: .6em 0;
}

.command-paragraph:hover {
  background: linear-gradient(90deg, rgba(238, 238, 238, .8) 10%, rgba(225, 217, 237, .6) 50%, rgba(217, 237, 231, .8) 85%);
  /* background: rgba(230, 230, 230, .8); */
}

.command-panel {
  overflow-y: auto;
  overflow-x: hidden;
  height: 45vh;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 1em;
  overflow: hidden;
  padding: 0 0 0 .5em;
  background-color: #fff;
}

.input-like {
  resize: none;
  /* Prevent resizing */
  border: none;
  overflow: hidden;
  padding: 1em .5em;
  flex-grow: 1;
  width: 0;
  /* Allows flex-grow to take up remaining space */
  box-sizing: border-box;
  outline: none;
  background-color: #fff;
  line-height: 1.4em;
  font-size: 1em;
  color: #333;
  height: 73px;
}

.ask-button {
  background: linear-gradient(to right, #4600ba, #4600ba);
  border: none;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  border-radius: 0 1em 1em 0;
  height: 73px;
}

.ask-button-disabled {
  background: #888;
  border: none;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  border-radius: 0 1em 1em 0;
  height: 73px;
}

.btn-gradient {
  background: var(--bg-gradient);
  color: #fff;
  border: none;
}

.btn-gradient:hover {
  background: var(--bg-gradient-light);
  color: #fff;
}

.ask-button:hover {
  background: linear-gradient(to right, #7255b8, #9948f7);
}

.floating-guide {
  height: 7em;
}

.action-menu {
  right: -1em;
  top: -1em;
}

.command-query {
  width: calc(100% - 30px);
}

#ask_copilot_window {
  padding-right: 1.4em !important;
}

.analysis_html {
  white-space: normal !important;
  /* needed to diskaply Markdown converted HTML properly */
  line-height: 1.8em;
}

.analysis_html strong {
  color: #eee;
  background: var(--theme-color);
  padding: 0 .4em;
  font-weight: normal;
}

#div_guidance_analysis {
  white-space: break-spaces;
  padding: 1em 3em 0em 1.5em;
  min-height: 100%;
  /* font-size: .9em; */
}

#div_copilot_analysis .editor-toolbar {
  border: none !important;
}

#div_copilot_analysis .editor-preview {
  background: #fff !important;
  overflow-y: hidden !important;
  padding-top: 0em !important;
}

#div_copilot_analysis .CodeMirror,
.CodeMirror-scroll {
  border: none !important;
  padding-left: 1.4em !important;
  padding-right: 1.4em !important;
  line-height: 2.1em !important;
  padding-bottom: 0 !important;
}

#div_copilot_metadata {
  padding-left: 1.5em;
  font-size: .8em;
  margin-bottom: 1em;
  margin-left: 1em;
}

.copilot-analysis-icon {
  height: 18px;
  margin-top: -2px;
  margin-right: .5em;
}

.tag-icon {
  border-top-left-radius: .4em;
  border-bottom-left-radius: .4em;
  ;
}

.command-info-value {
  padding-left: 0;
  padding-right: 1em;
}


/* Main UI - Weekly Pulse */
.textarea-weekly-pulse {
  background-color: var(--theme-background);
  height: 30em !important;
}

.textarea-improved-ai {
  background-color: var(--textarea-black);
  font-family: consolas;
  color: #eee;
  height: 35.2em !important;
  margin: 0 0 3em 0;
}

.textarea-improved-ai:focus {
  background-color: var(--textarea-black);
  color: #eee;
}

.mde-panel {
  min-height: 44em;
  overflow-y: auto;
  overflow-x: hidden;
}



/* Main UI - Side Nav */
#offcanvas_sidenav {
  width: 850px;
}

.nav-subtitle {
  font-size: .95rem;
  color: #222;
}

.weekly-pulse-paragraph {
  /* max-width: 550px; */
  border-radius: .75em;
  background: rgb(240, 240, 240, .9);
  line-height: 1.6em;
  font-size: 1.1em;
  padding: 1.2em 1.4em 1.2em 1.2em;
  margin: 1em 0;
  white-space: normal;
}

.weekly-pulse-paragraph strong {
  color: #eee;
  background: rgb(117, 58, 193, .8);
  padding: .1em .7em;
  font-weight: normal;
  border-radius: 1em;
}

.weekly-pulse-paragraph img {
  padding: 1em 0 !important;
  cursor: zoom-in;
}

.weekly-pulse-paragraph code {
  background-color: rgba(0, 0, 0, 0.75);
  font-family: 'consolas';
  display: block;
  border-radius: .7em;
  padding: .5em 1em;
  color: #eee;
  margin: 1em auto;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1050;
  display: none;
}

.popup-image {
  display: inherit;
}

.weekly-pulse-profile-pic {
  width: 65px;
  border-radius: 10em;
  position: relative;
  right: 3.5em;
}

.nothing-here {
  max-width: 340px;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  display: block;
  /* margin: 250px auto 0 auto; */
}

.nothing-here-chart {
  max-width: 100%;
  max-height: 280px;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  display: block;
  margin: 50px auto 0 auto;
  width: auto !important;
}

.nothing-here-text {
  text-align: center;
}

.rounded-border {
  border-radius: 4em;
}

/* Main UI - ROB */
.refresh-badge {
  width: 110px;
  height: 10px;
}

.generate_rob {
  width: 200px;
}

.status-message {
  line-height: 1.8em;
}

.rob-profile-pic {
  border-radius: 10em;
  width: 3.4em;
}

.preload-images {
  display: none;
  background-image: url('../static/images/generating_v1.gif'), url('../static/images/generating_v2.gif'), url('../static/images/generating_v3.gif'), url('../static/images/not-found.svg'), url('../static/images/not-found.svg');
}

.timeline-item-user {
  background-color: #ccc !important;
}

.timeline-item-user:hover {
  background-color: rgb(86, 204, 215) !important;
}

/* Main UI - Releases */
.timeline-description {
  padding: .7em 2em;
  max-width: 750px;
  border-radius: .5em;
  line-height: 1.3em;
  font-size: .9em;
}

.release-items {
  line-height: 1.7em;
  font-size: 1.1em;
}

.release-item-category {
  font-size: 1.2em;
}

/* Starter Tempalte - DYNAMIC LAYOUT & FLEX POINT */
@media screen and (max-width: 768px) {
  .mobile-no-show {
    display: none;
  }

  .viewport-textarea {
    height: 10em;
  }

  .viewport-rewrite {
    margin: 0 auto;
  }

  .viewport-sidenav-title {
    font-size: 1.5em;
  }
}

/* Hide element under a viewport break point */
@media screen and (max-width: 768px) {
  .noshow-md {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .noshow-lg {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .noshow-xl {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  .noshow-xxl {
    display: none;
  }
}

@media (min-width: 1500px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1680px;
  }
}

/* Tab Navigation Styling */
.nav-tabs .nav-link {
  color: #333 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
}

.nav-tabs .nav-link:hover {
  color: #2268cf !important;
  background-color: transparent !important;
  border: none !important;
}

.nav-tabs .nav-link.active {
  color: #2268cf !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 2px solid #2268cf !important;
}

.nav-tabs .nav-link.active:hover {
  color: #2268cf !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 2px solid #2268cf !important;
}

/* Prism.js Code Block Word Wrapping */
.code-block {
  border-radius: 0.375rem !important;
  font-size: 15px !important;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.code-block code {
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

/* Custom Modal Dialog Styles */
.modal-dialog.copilot-modal-dialog {
  max-width: 920px;
  margin: auto;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 2rem);
}

.modal-dialog.copilot-modal-dialog .modal-content {
  height: 600px;
  overflow-y: auto;
}

.modal-dialog.copilot-modal-dialog .modal-body {
  max-height: 500px;
  overflow-y: auto;
}


/* Dashboard */
#div_top_users {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Summary Loading Overlay */
.card-body {
  position: relative;
}

.summary-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 200px;
}

.summary-loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
  pointer-events: none;
}