﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Open Sans Regular"; }

.icon-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #ffffff;
  font-size: 24px; }

.tenrox_header {
  display: flex;
  align-items: center;
  /* Ensure the header consumes full width and children lay out horizontally */
  width: 100%;
  background-color: #2574db;
  justify-content: space-between;
  padding: 4px 16px 4px 4px;
  height: 50px;
  /* Sections: left fixed, center flexible, right fixed */
  /* Simple header mode: only the logo, left-aligned */
  /* Optional: full-width bar for simple mode; logo stays left */ }
  .tenrox_header .left-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0; }
    .tenrox_header .left-section .menu-title {
      display: flex;
      align-items: center;
      gap: 16px;
      /* Rotate hamburger to vertical lines when flyout is open or menu manually toggled */
      /* Smooth default for icon to avoid jump */ }
      .tenrox_header .left-section .menu-title .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        flex-shrink: 0; }
        .tenrox_header .left-section .menu-title .menu-button:hover {
          background: rgba(255, 255, 255, 0.15); }
        .tenrox_header .left-section .menu-title .menu-button .icon-base {
          margin: 0; }
      .tenrox_header .left-section .menu-title #menu-title-icon.is-rotated {
        transform: rotate(90deg);
        transition: transform 160ms ease-in-out; }
      .tenrox_header .left-section .menu-title #menu-title-icon {
        transition: transform 160ms ease-in-out; }
      .tenrox_header .left-section .menu-title .title {
        font-family: "Open Sans Regular";
        font-weight: 600;
        font-size: 20px;
        line-height: 28px;
        color: #ffffff;
        margin: 0; }
  .tenrox_header .center-section {
    flex: 1 1 auto;
    min-width: 0;
    /* Critical for allowing flex item to shrink without overflowing */
    /* Prevent its contents from overlaying the right-section */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px 4px;
    padding: 0 0px; }
    .tenrox_header .center-section .announcement-container {
      display: flex;
      width: 100%;
      justify-content: center; }
    .tenrox_header .center-section .system-messages-container {
      display: flex;
      gap: 8px;
      justify-content: flex-start;
      align-items: flex-start;
      width: 100%;
      flex-wrap: wrap;
      /* System messages: keep to single line and truncate */
      overflow: hidden; }
    .tenrox_header .center-section .system-message {
      display: inline-flex;
      align-items: center;
      max-width: 100%;
      white-space: nowrap;
      overflow: hidden;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 4px;
      background-color: #F0FCFF;
      color: #252B31;
      font-size: 13px;
      font-weight: 400;
      max-height: 32px; }
      @media screen and (min-width: 1366px) and (max-width: 1919px) {
        .tenrox_header .center-section .system-message {
          max-width: 85%;
          white-space: normal;
          font-size: 12px;
          gap: 4px; } }
      @media screen and (max-width: 1366px) {
        .tenrox_header .center-section .system-message {
          max-width: 33%;
          font-size: 12px;
          gap: 4px; } }
      .tenrox_header .center-section .system-message.Fr {
        max-width: 85%;
        white-space: normal;
        font-size: 12px; }
        @media screen and (min-width: 1366px) and (max-width: 1919px) {
          .tenrox_header .center-section .system-message.Fr {
            max-width: 50%; } }
      .tenrox_header .center-section .system-message.system-message-alert {
        background-color: #FFDBE6; }
        .tenrox_header .center-section .system-message.system-message-alert .system-message-icon {
          color: #93002F; }
      .tenrox_header .center-section .system-message.system-message-info {
        background-color: #F0FCFF; }
        .tenrox_header .center-section .system-message.system-message-info .system-message-icon {
          color: #1F7E98; }
      .tenrox_header .center-section .system-message .system-message-icon {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        font-size: 18px; }
      .tenrox_header .center-section .system-message .system-message-text {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        /* Truncate text to avoid overflow */
        max-width: 100%;
        white-space: nowrap; }
      .tenrox_header .center-section .system-message .system-message-link {
        cursor: pointer;
        text-decoration: underline;
        color: inherit;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        white-space: nowrap; }
        .tenrox_header .center-section .system-message .system-message-link:hover {
          text-decoration: none; }
        .tenrox_header .center-section .system-message .system-message-link.system-message-link-full {
          display: inline-block; }
      .tenrox_header .center-section .system-message[title] {
        cursor: help; }
        .tenrox_header .center-section .system-message[title]:hover {
          background-color: rgba(255, 255, 255, 0.25); }
  .tenrox_header .right-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0; }
    .tenrox_header .right-section .logo {
      display: flex;
      align-items: center;
      padding-right: 8px; }
      .tenrox_header .right-section .logo .icon-base {
        width: auto;
        height: 24px; }
      .tenrox_header .right-section .logo .custom-logo {
        max-height: 45px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        display: block; }
    .tenrox_header .right-section .divider {
      display: flex;
      align-items: center;
      padding: 0 10px 0 16px;
      height: 100%; }
      .tenrox_header .right-section .divider .vertical-line {
        width: 1px;
        height: 36px;
        background-color: #bfc6ce; }
    .tenrox_header .right-section .toprightmenu-search {
      flex: 1 1 0;
      min-width: 200px;
      display: flex;
      align-items: center;
      height: 100%; }
    .tenrox_header .right-section .toprightmenu-help,
    .tenrox_header .right-section .toprightmenu-notification {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      position: relative;
      flex-shrink: 0;
      border-radius: 4px;
      cursor: pointer; }
      .tenrox_header .right-section .toprightmenu-help:hover,
      .tenrox_header .right-section .toprightmenu-notification:hover {
        background: rgba(255, 255, 255, 0.15); }
    .tenrox_header .right-section .aiChatButtonSection.toprightmenu-aichat {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      position: relative;
      bottom: auto;
      right: auto;
      z-index: auto;
      flex-shrink: 0;
      border-radius: 4px;
      cursor: pointer;
      /* Status badge styling */ }
      .tenrox_header .right-section .aiChatButtonSection.toprightmenu-aichat:hover {
        background: rgba(255, 255, 255, 0.15); }
      .tenrox_header .right-section .aiChatButtonSection.toprightmenu-aichat #aiChatIcon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
        transition: filter 0.3s ease;
        font-size: 30px;
        color: white; }
      .tenrox_header .right-section .aiChatButtonSection.toprightmenu-aichat #aiChatStatusBadge {
        position: absolute;
        bottom: 0;
        right: 0;
        min-width: 20px;
        padding: 2px 6px;
        font-size: 9px;
        font-weight: bold;
        border-radius: 10px;
        border: 2px solid white;
        display: none;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease; }
        .tenrox_header .right-section .aiChatButtonSection.toprightmenu-aichat #aiChatStatusBadge[data-state='thinking'] {
          display: flex;
          background-color: #0ab894;
          color: white;
          animation: ai-badge-pulse 1.5s ease-in-out infinite; }
        .tenrox_header .right-section .aiChatButtonSection.toprightmenu-aichat #aiChatStatusBadge[data-state='done'] {
          display: flex;
          background-color: #00b894;
          color: white; }
        .tenrox_header .right-section .aiChatButtonSection.toprightmenu-aichat #aiChatStatusBadge[data-state='notification'] {
          display: flex;
          background-color: #0ea5e9;
          color: white; }
    .tenrox_header .right-section .toprightmenu-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: color 0.2s; }
      .tenrox_header .right-section .toprightmenu-icon.notification-disabled {
        color: #7EB1F4;
        cursor: default; }
    .tenrox_header .right-section .count-bubble {
      position: absolute;
      top: 8px;
      right: 8px;
      color: #ffffff;
      background-color: #f90303;
      font-size: 12px;
      width: 15px;
      height: 15px;
      line-height: 15px;
      text-align: center;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .tenrox_header .right-section .count-bubble.hidden {
        display: none; }
    .tenrox_header .right-section .user-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 8px;
      border-radius: 2px;
      cursor: pointer;
      height: 50px;
      flex-shrink: 0;
      max-width: 20vw;
      /* your tightened cap */
      overflow: visible;
      /* dropdown visibility */
      position: relative; }
      @media screen and (min-width: 1367px) and (max-width: 1919px) {
        .tenrox_header .right-section .user-menu {
          max-width: 24vw; } }
      .tenrox_header .right-section .user-menu:hover {
        background: rgba(255, 255, 255, 0.15); }
      .tenrox_header .right-section .user-menu .avatar {
        width: 32px;
        height: 32px;
        background: #e2eefd;
        border-radius: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Open Sans Regular";
        font-weight: 600;
        font-size: 14px;
        color: #0c5cc5;
        flex-shrink: 0;
        object-fit: cover;
        flex: 0 0 32px; }
      .tenrox_header .right-section .user-menu .user-name {
        font-family: "Open Sans Regular";
        font-weight: 400;
        font-size: 13px;
        line-height: 1.2;
        color: #ffffff;
        display: inline-block;
        min-width: 0;
        max-width: calc(100% - 32px - 8px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
        @media screen and (min-width: 1367px) and (max-width: 1919px) {
          .tenrox_header .right-section .user-menu .user-name {
            max-width: calc(100% - 32px - 8px); } }
  @media screen and (max-width: 1366px) {
    .tenrox_header .right-section {
      gap: 0px; } }
  .tenrox_header.simple {
    justify-content: flex-start;
    /* align left */
    padding: 4px 16px 4px 16px; }
    .tenrox_header.simple .left-section,
    .tenrox_header.simple .center-section,
    .tenrox_header.simple .right-section .divider,
    .tenrox_header.simple .right-section .toprightmenu-search,
    .tenrox_header.simple .right-section .toprightmenu-help,
    .tenrox_header.simple .right-section .toprightmenu-notification,
    .tenrox_header.simple .right-section .user-menu {
      display: none !important; }
    .tenrox_header.simple .right-section {
      display: flex;
      align-items: center;
      gap: 0; }
    .tenrox_header.simple .right-section .logo {
      padding-right: 0; }
      .tenrox_header.simple .right-section .logo .icon-base {
        height: 24px;
        width: auto; }
  @media screen and (min-width: 1367px) and (max-width: 1920px) {
    .tenrox_header.simple {
      max-width: 100%;
      margin: 0;
      /* flush left */ } }

#notificationPopup {
  position: absolute;
  top: 49px;
  right: 0;
  background-color: #f1f3f3;
  border: solid 1px #e2e2e2;
  border-radius: 1px;
  width: 400px;
  height: calc(100% - 49px);
  overflow: hidden;
  z-index: 10000;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12); }

.notifications-scrollDiv {
  max-height: calc(100% - 225px);
  width: 395px;
  top: 170px;
  position: fixed; }

#divContentBottom {
  top: calc(100% - 55px);
  position: fixed;
  padding-left: 16px;
  width: 395px;
  text-align: center;
  border-top: 1px solid #b4bdc2;
  height: 55px;
  display: table;
  background-color: #ffffff; }
  #divContentBottom .gotonotificationDiv {
    display: table-cell;
    vertical-align: middle; }
  #divContentBottom .gotonotification {
    font-size: 14px;
    text-decoration: underline; }

#notificationPopup ~ .notifications-overlay,
#broadcastNotificationPopup ~ .notifications-overlay,
#expandNotificationPopup ~ .notifications-overlay {
  background-color: rgba(0, 0, 0, 0.35); }

#expandNotificationPopup ~ .notifications-overlay {
  z-index: 10001; }

.notifications-overlay {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all 300ms ease; }

.notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px 13px 10px;
  border-bottom: 1px solid #b4bdc2;
  background-color: #ffffff; }
  .notifications-header.notifications-header-popup {
    justify-content: normal;
    border-bottom-width: 0; }
  .notifications-header .notifications-header-text {
    font-size: 20px;
    font-weight: 600;
    color: #252B31; }
  .notifications-header .notifications-header-pager {
    padding-left: 15px;
    font-size: 16px;
    color: #6B7786; }
  .notifications-header .notifications-header-toggle {
    font-size: 14px;
    grid-gap: 5px;
    justify-content: space-evenly;
    align-content: center;
    margin-top: 7px;
    display: flex;
    color: #252B31; }
    .notifications-header .notifications-header-toggle p {
      margin: 0 5px 0 0; }
    .notifications-header .notifications-header-toggle .toggle {
      --width: 35px;
      --height: 17.5px;
      --border-radius: 8.75px;
      display: inline-block;
      cursor: pointer; }
    .notifications-header .notifications-header-toggle .toggle__input {
      display: none; }
      .notifications-header .notifications-header-toggle .toggle__input:checked ~ .toggle__fill {
        background: #1666d0; }
        .notifications-header .notifications-header-toggle .toggle__input:checked ~ .toggle__fill::after {
          transform: translateX(var(--height));
          border-color: #1666d0; }
    .notifications-header .notifications-header-toggle .toggle__fill {
      position: relative;
      width: var(--width);
      height: var(--height);
      border-radius: var(--border-radius);
      background: #dddddd;
      transition: background 0.2s; }
      .notifications-header .notifications-header-toggle .toggle__fill::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: var(--height);
        width: var(--height);
        background: #ffffff;
        border-radius: var(--border-radius);
        transition: transform 0.2s;
        border: solid 2px #5e6978; }

_:-ms-fullscreen, :root .notifications-header-toggle .toggle {
  width: 35px;
  height: 17.5px;
  border-radius: 8.75px; }

_:-ms-fullscreen, :root .notifications-header-toggle .toggle__fill {
  width: 35px;
  height: 17.5px;
  border-radius: 8.75px; }
  _:-ms-fullscreen::after, :root .notifications-header-toggle .toggle__fill::after {
    width: 17.5px;
    height: 17.5px;
    border-radius: 8.75px; }

_:-ms-fullscreen, :root .notifications-header-toggle .toggle__input:checked ~ .toggle__fill::after {
  -ms-transform: translateX(17px); }

.notifications-content {
  display: flex;
  flex-direction: column; }

.broadcast-notifications-content,
.expand-notifications-content {
  overflow: auto; }
  .broadcast-notifications-content .notifications-content-card-message.active .notif-msg-scroll,
  .expand-notifications-content .notifications-content-card-message.active .notif-msg-scroll {
    overflow: auto;
    padding-right: 10px;
    padding-bottom: 10px; }

.broadcast-notifications-content .notifications-content-card-message.active .notif-msg-scroll {
  height: auto; }

.notifications-content-card {
  margin: 10px 15px 5px 15px;
  padding: 15px;
  min-height: 140px;
  border-radius: 4px;
  border: solid 1px #bfc6ce;
  background-color: #ffffff;
  border-left: 4px solid #2574db; }
  .notifications-content-card:first-child {
    margin-top: 0; }

.expand-notifications-content-card,
.broadcast-notifications-content-card {
  border-left: 4px solid #6bd137; }

.notifications-content-card-header {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  color: #252B31;
  display: inline-block;
  width: 100%;
  height: 24px; }

.notifications-content-card-links {
  width: 100%;
  display: inline-block;
  margin-bottom: 11px; }

.read-indicator {
  width: 24px;
  height: 24px;
  color: #6B7786;
  border-radius: 50%;
  align-content: center;
  text-align: center;
  cursor: pointer; }

#expandNotificationPopup .read-indicator {
  cursor: default; }

.notifications-content-card-message {
  font-size: 14px;
  margin-bottom: 8px;
  height: 45px;
  overflow: hidden;
  padding: 3px 0 3px 3px;
  font-weight: 400;
  line-height: 1.43;
  color: #252B31; }
  .notifications-content-card-message.active {
    height: auto;
    min-height: 54px;
    overflow-y: auto; }

.notif-msg-scroll {
  overflow-x: auto; }
  .notif-msg-scroll.showmore {
    cursor: pointer; }

.notifications-content-card .show-more-toggle {
  color: #0090ca;
  font-size: 14px;
  cursor: pointer;
  display: inline-block; }
  .notifications-content-card .show-more-toggle.active .fas {
    transform: rotate(180deg); }

.notifications-content-card-footer {
  height: 21px; }

.messageTitle {
  float: left;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.icon-radio-circle {
  color: #2574db !important;
  border-radius: 50%;
  font-size: 24px; }

#no-notifications-display {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center; }

#notifications-content-display-bottom {
  display: none;
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 14px; }

#divContentTop {
  padding-top: 5px;
  padding-bottom: 5px; }

#notificationPopup .notifications-content #divContentTop {
  padding-top: 20px;
  padding-bottom: 20px; }

#latest-display-text {
  font-size: 15px;
  padding: 10px 16px;
  max-width: 150px;
  display: inline; }

#mark-all-notifications-read {
  margin-top: 2px;
  margin-right: 20px;
  display: inline;
  float: right; }
  #mark-all-notifications-read a {
    font-size: 14px;
    text-decoration: underline; }

#expandNotificationPopup,
#broadcastNotificationPopup {
  position: absolute;
  top: 30%;
  left: calc(50% - 220px);
  background-color: #ffffff;
  border: solid 1px #e2e2e2;
  border-radius: 4px;
  width: 600px;
  overflow: hidden;
  z-index: 10000;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12); }

#expandNotificationPopup {
  z-index: 20000; }
  #expandNotificationPopup .read-indicator,
  #expandNotificationPopup .messageTitle {
    display: none !important; }

/*TE-106124 Notification popup UI is missing the notification title*/
#notifications-list-container > div.expand-notifications-content.notifications-content > div.expand-notifications-scrollDiv > div.notifications-scrollDiv-inner > div > div.notifications-content-card-header > span.messageTitle.tenroxTheme2 {
  display: block !important; }

#broadcastNotificationPopup .read-indicator {
  display: none !important; }

#broadcastNotificationPopup .messageTitle {
  max-width: 450px; }

.expand-notifications-scrollDiv,
.broadcast-notifications-scrollDiv {
  max-height: calc(100% - 145px);
  margin-right: 5px; }

.expand-notifications-scrollDiv {
  padding-bottom: 10px; }

.modal-close-icon {
  position: absolute !important;
  right: 17px;
  height: 20px;
  width: 20px;
  opacity: 1;
  cursor: pointer; }
  .modal-close-icon:before, .modal-close-icon:after {
    position: absolute;
    left: 8px;
    content: ' ';
    height: 20px;
    width: 1px;
    background-color: #231f20; }
  .modal-close-icon:before {
    transform: rotate(45deg); }
  .modal-close-icon:after {
    transform: rotate(-45deg); }

.expand-notifications-footer,
.broadcast-notifications-footer {
  margin: 10px 15px 10px 10px;
  height: 25px; }
  .expand-notifications-footer button,
  .broadcast-notifications-footer button {
    float: right;
    margin: 0 5px; }

.broadcast-notifications-footer #btndontShowNotifications {
  float: right;
  padding-right: 0;
  padding-top: 0; }

.broadcast-notifications-footer #btnNext.active-button,
.broadcast-notifications-footer #btnPrev.active-button {
  color: #2574db !important; }

.broadcast-notifications-footer #btnPrev {
  color: #6B7786 !important; }

.broadcast-notifications-footer #btnNext,
.broadcast-notifications-footer #btnPrev {
  font-weight: bold; }

.btn-brodcastnotif-white {
  text-transform: uppercase;
  color: #2574DB !important;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 4px;
  height: 36px; }

.buttonv2:hover {
  background-color: #F1F3F3;
  border: 1px solid #F1F3F3; }

.buttonv2:active:enabled {
  color: #0C5CC5 !important;
  background-color: #E2EEFD !important;
  background-image: none !important; }

.buttonv2:active:disabled {
  background-color: none !important;
  background-image: none !important;
  cursor: none !important; }

.topright-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background-color: #ffffff;
  border: 1px solid #bfc6ce;
  border-radius: 4px;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 10000;
  padding: 4px 0; }
  .topright-dropdown-menu.hidden {
    display: none !important; }
  .topright-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    color: #252B31;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    transition: background-color 0.2s; }
    .topright-dropdown-menu a:hover {
      background-color: rgba(131, 143, 160, 0.12);
      color: #252B31; }
    .topright-dropdown-menu a .menu-text {
      flex: 1; }
    .topright-dropdown-menu a .icon-base {
      width: 16px;
      height: 16px;
      font-size: 16px;
      margin-left: 8px;
      flex-shrink: 0; }
  .topright-dropdown-menu a[smid="UplandAssitstSubMenu"] .upland-icon-ai-assist {
    width: 20px;
    height: 20px;
    font-size: 24px;
    flex-shrink: 0;
    margin-left: 8px;
    background: linear-gradient(180deg, #BB30E2 0%, #2574DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; }
  .topright-dropdown-menu .menu-separator {
    margin: 4px 0;
    border: 0;
    border-top: 1px solid #bfc6ce; }
  .topright-dropdown-menu .in-menu-icon {
    position: relative;
    right: 70px; }
    .topright-dropdown-menu .in-menu-icon.upland-icon-out-of-office-indicator {
      color: #E60C51; }
    .topright-dropdown-menu .in-menu-icon.upland-icon-in-office-indicator {
      color: #76CA02; }

/* Badge pulse animation for thinking state */
@keyframes ai-badge-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9; }
  50% {
    transform: scale(1.1);
    opacity: 1; } }

/* Tooltip content styling */
.ai-chat-tooltip-content {
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  background-color: #333;
  color: white;
  transition: all 0.2s ease; }

/* Tooltip specific state colors */
.ai-tooltip-thinking {
  background: linear-gradient(135deg, #0ab894 0%, #0a9470 100%);
  color: white;
  box-shadow: 0 4px 8px rgba(10, 184, 148, 0.3); }

.ai-tooltip-done {
  background: linear-gradient(135deg, #00b894 0%, #009070 100%);
  color: white;
  box-shadow: 0 4px 8px rgba(0, 184, 148, 0.3); }

.ai-tooltip-notification {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.3); }

.ai-tooltip-text {
  display: flex;
  align-items: center;
  gap: 6px; }

/* Bootstrap tooltip override for persistent display */
.bs-tooltip-bottom {
  z-index: 1070; }

.bs-tooltip-bottom .tooltip-arrow {
  border-bottom-color: transparent; }

.bs-tooltip-bottom.show .tooltip-arrow {
  border-bottom-color: rgba(0, 0, 0, 0.9); }
