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

    :root {
      --color-primary: #0b3a5c;
      --color-primary-dark: #072d49;
      --color-text: #333;
      --color-text-light: #555;
      --color-link: #0b3a5c;
      --color-bg: #f0f2f5;
      --color-card: #fff;
      --color-border: #e0e0e0;
      /* --font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif; */
       font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
               "Segoe UI Emoji", "Segoe UI Symbol";
    }

    body {
      font-family: var(--font-family);
      background-color: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      /* font-family:  Roboto, Arial, sans-serif; */
    background: #e9edf1;
    }

    /* ── Topbar ── */
    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: var(--color-primary);
      padding: 30px 42px;
      height: 90px;
      position: sticky;
      top: 0;
      z-index: 1050;
    }

    .topbar__left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-btn {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }

    .menu-btn span {
      display: block;
      width: 26px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
    }

    .menu-label {
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .topbar__right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 4px;
      position: relative;
    }

    .icon-btn--badge {
      position: relative;
    }

    .icon-btn--badge .badge {
      position: absolute;
      top: 1px;
      right: 1px;
      width: 8px;
      height: 8px;
      background-color: #e74c3c;
      border-radius: 50%;
    }

    .user {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .user__avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #fff;
      background-color: transparent;
    }

    .user__name {
      color: #fff;
      font-size: 14px;
      font-weight: 500;
    }

    /* ── Main Content ── */
    .main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 12px 48px 48px;
      
    }

    .welcome {
      font-size: 19px;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 16px;
    }

    .page-title {
      font-size: 23px;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 24px;
    }


    .card {
      background-color: var(--color-card);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      padding: 32px 40px;
      margin-bottom: 24px;
      box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.09),
        0 1px 2px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.22s ease, transform 0.22s ease;
      
    }

    .card:hover {
      box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.07),
        0 16px 40px rgba(0, 0, 0, 0.13),
        0 2px 4px rgba(0, 0, 0, 0.05);
      transform: translateY(-3px);
    }

    .card__title {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 12px;
    }

    .card__title--large {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
    }
.card__title--medium {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
      font-weight: 900;
    }

    .card__title--bold {
      font-weight: bold;
    }
    .card__subtitle {
      font-size: 17px;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 8px;
      letter-spacing: 0.3px;
    }
.card__list {
  padding-left: 20px;
  margin-top: 10px;
}

.card__list li {
  margin-bottom: 10px;
  line-height: 0.9;
  font-size: 17px;
}
    .card__text {
      font-size: 17px;
      color: var(--color-text);
      line-height: 1.7;
      margin-bottom: 4px;
    }

    .card__text a {
      color: var(--color-link);
      text-decoration: none;
    }

    .card__text a:hover {
      text-decoration: underline;
    }

    .card__link {
      display: inline-block;
      margin-top: 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--color-primary);
      text-decoration: none;
    }

    .card__link:hover {
      text-decoration: underline;
    }
    
.text {
        font-size: 17px;
        color: rgb(11, 33, 100);
        

}
.footer_welcome {
      background-color: #0b3a5c;
      padding: 32px 24px;
      text-align: center;
    }


    .footer__copyright {

      color: #fff;
      font-size: 19px;
      font-weight: 600;
      letter-spacing: 0.3px;
      margin-bottom: 18px;

    } 

    .footer__links {

      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;

    }

    .footer__link {

      color: #fff;
      font-size: 19px;
    text-decoration: none;
      padding: 0 18px;
      opacity: 0.9;
      transition: opacity 0.15s;
      font-weight: 400 !important;

    }

 

    .footer__link:hover {

      opacity: 1;
      text-decoration: underline;

    }

 

    .footer__separator {

      color: #fff;
      font-size: 13px;
      opacity: 0.6;

    }


/* ── starting page ──
====================================
========================================


*/


/* --------------- NAVBAR ------------*/

.navbar {
    background: #0b3a5a;
}

.navbar a {
    color: #fff !important;
}

.navbar a:hover {
    color: #cfe4f5 !important;
    text-decoration: underline;
}

.hero-wrapper .btn-light:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: white;
}


.navbar-brand {
    font-weight: 600;
}

.logo-icon {
  width: auto;        
  height: 48px;       
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
}

.logo-light {
    color: #cfe4f5;
}


/* ----------------COMMON----------------*/

.section {
    margin-top: 12px;
}

.card-soft {
    background: #f5f7f9;
    border: 1px solid #d5d9de;
    border-radius: 6px;
    padding: 20px;
}

.hero {
    background: transparent;
    border: none;
    padding: 35px 0;
}

.small-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f3b57;
    letter-spacing: 0.3px;
}

button,
a {
    transition: 0.2s ease;
}


/* ---------------- HERO ----------------*/

.hero-wrapper {

    background: linear-gradient(
        120deg,
        #0f4f73 0%,
        #2a6f96 55%,
        #4f92bd 100%
    );

    box-shadow: inset 0 -40px 60px rgba(0,0,0,0.12);

    padding: 60px 0 70px 0;
}

.hero-wrapper .section {
    margin-top: 0;
}

.hero-wrapper h1 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-wrapper p {
    color: #e3eef7;
    margin-bottom: 18px;
}

.hero-wrapper .btn-primary {
    background: white;
    color: #0b3a5a;
    font-weight: 600;
    transition: 0.2s ease;
    transition: 0.2s ease;
}


.hero-wrapper .btn-primary:hover {
   border: 1px solid white;
    color: white;
    background: transparent;
}

.hero-wrapper .btn-light {
    border: 1px solid white;
    color: white;
    background: transparent;
     transition: 0.2s ease;
}

.hero-wrapper .btn-light:hover {
    background: white;
    color: #0b3a5a;
    border-color: white;
}


/* -------------- HERO TREE BG --------------*/

.hero-tree {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.25));
}

.hero-tree::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 220px;

    top: 40px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 0;

    background: radial-gradient(
        rgba(255,255,255,0.04),
        transparent 70%
    );
}

.preview-node,
.preview-row,
.preview-line {
    position: relative;
    z-index: 2;
}


/*--------------BUTTON ---------------*/

.btn-primary {
    background: #0b3a5a;
    border: none;
}

.btn-primary:hover {
    background: #072b44;
}


/* ------------- FEATURES ----------------*/

.feature-card {
    border: 1px solid #d5d9de;
    border-radius: 6px;
    padding: 16px;
    background: #fff;
    height: 100%;
}

.feature-title {
    font-weight: 600;
}


/* ---------------TREE --------------- */

.preview-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-node {
    display: flex;
    align-items: center;
    width: 360px;
    height: 60px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    overflow: hidden;
    position: relative;
    
}

.preview-strip {
    width: 50px;
    height: 100%;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-blue { background:#1f3b57; }
.strip-green { background:#1f9d55; }
.strip-red { background:#c0392b; }

.preview-avatar {
    width: 32px;
    height: 32px;
    background: #cfd4d9;
    border-radius: 50%;
    margin: 0 10px;
}

.preview-title {
    font-size: 13px;
    font-weight: 600;
}

.preview-meta {
    font-size: 12px;
    color: #666;
}

.preview-line {
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.6);
}

.preview-row {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    position: relative;
    justify-content: center;
}


/* connectors */

.hero-tree > .preview-node {
    margin-top: 10px;
    margin-bottom: 12px;
}

.hero-tree .preview-row::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 260px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    transform: translateX(-50%);
}

.hero-tree .preview-node:first-child::before,
.hero-tree .preview-node:last-child::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: rgba(255,255,255,0.6);
}


/* WHY / HOW section */

.why-block {
    padding: 8px 10px;
}

.why-section {
    background: #f3f6f9;
    padding: 18px 10px;
    border-radius: 6px;
    font-size: 18px;
}

.why-img{
    max-height:280px;
    height:auto;
}

.why-block .small-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b3f5a;
    margin-bottom: 10px;
}

.why-block div {
    margin-bottom: 6px;
}

.why-section img{
    display:block;
}


/* --------------TABLE------------------ */

.table {
    background: #f5f7f9;
    border: 1px solid #d5d9de;
    border-radius: 6px;
    overflow: hidden;
}

.table thead {
    background: #eef2f5;
}

.table thead th {
    font-size: 12.5px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.table tbody tr:hover {
    background: #fff;
}

.hero-tree {
    max-width: 100%;
}

.preview-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-node {
    max-width: 360px;

}

@media (max-width: 768px) {

.hero-tree {
    display: flex;
    justify-content: center;
}

.preview-row {
    flex-direction: column;
    align-items: center;
}

}



@media (max-width: 1547px) and (min-width: 1200px) {

.preview-node {
    width: 300px;
    height: 54px;
    border-radius: 8px;
}

.preview-strip {
    width: 44px;
    font-size: 12px;
}

.preview-avatar {
    width: 26px;
    height: 26px;
    margin: 0 8px;
}

.preview-title {
    font-size: 12px;
    line-height: 1.2;
}

.preview-meta {
    font-size: 11px;
}

.preview-row {
    gap: 16px;
}

.preview-line {
    height: 24px;
}

.hero-tree .preview-row::before {
    width: 210px;
}

.hero-tree::before {
    width: 360px;
}

}


/* ============================================
   LOGIN PAGE STYLES 
   ============================================ */
/* ============================================
   LOGIN PAGE STYLES — append to style.css
   ============================================ */

:root {
  --primary: #0b3a5c;
  --primary-dark: #072d49;
  --link: #1a6fa8;
}

body {
  /* font-family: -apple-system, BlinkMacSystemFont,  Roboto, Arial, sans-serif; */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
               "Segoe UI Emoji", "Segoe UI Symbol";
}

/* ── Topbar ── */
.topbar {
  background-color: var(--primary);
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  flex-shrink: 0;
  z-index: 10;
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ── FIXED: Topbar logo image sizing ── */
.logo-icon-google {
  width: auto;        
  height: 28px;       
  object-fit: contain;
  flex-shrink: 3;
  
}



.topbar__btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.topbar__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Page body ── */
.page-body {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 16px;
  min-height: calc(100vh - 64px);
}



.bg-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/logo-bg.png');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}

/* ── Login card ── */
.login-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 40px 44px 36px;
  width: 100%;
  max-width: 380px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.07),
    0 12px 36px rgba(0, 0, 0, 0.12);
}

/* Card logo row */
.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}



.card-logo-text .name {
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
}

.card-logo-text .name strong {
  font-weight: 800;
}

.card-logo-text .tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* Form heading */
.form-heading {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.form-subheading {
  font-size: 12px;
  color: #888;
  margin-bottom: 18px;
}

/* Underline inputs */
.input-underline {
  border: none;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
  outline: none;
  box-shadow: none !important;
  padding: 6px 0;
  font-size: 14px;
  color: #222;
  background: transparent;
  width: 100%;
  margin-bottom: 16px;
  display: block;
}

.input-underline:focus {
  border-bottom-color: var(--link);
}

/* Remember / Forgot */
.remember-label {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-bottom: 0;
}

.remember-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--primary);
}

.forgot-link {
  font-size: 12px;
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Login button */
.btn-login {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 11px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 18px;
}

.btn-login:hover {
  background: var(--primary-dark);
}

/* Register */
.register-text {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-bottom: 14px;
}

.register-text a {
  color: var(--link);
  font-weight: 700;
  text-decoration: none;
}

.register-text a:hover {
  text-decoration: underline;
}

/* Google button */
.google-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 14px;
  background: #fff;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  font-family: inherit;
  transition: box-shadow 0.15s;
  width: auto;         
  
}
.google-wrap {
  display: flex;
  justify-content: center;
  width: 100%;        
}
.btn-google:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .login-card {
    padding: 28px 20px 26px;
  }

  .logo-text {
    font-size: 18px;
  }

  .topbar {
    padding: 0 14px;
  }
}

@media (max-width: 360px) {
  .topbar__btn {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* sidebar styles===========================*/
/*=====================================*/

/* ============================================
   SIDEBAR — append to style.css
   ============================================ */
/* Sidebar push layout */
/* Sidebar push layout */
/* Sidebar push layout */
#page-body {
  display: flex;
  align-items: flex-start;
  min-height: calc(100vh - 64px);
}

#page-body main {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.sidebar {
  width: 220px;
  min-height: calc(100vh - 64px);
  background: #fff;
  border-right: 1px solid #e0e8f0;
  box-shadow: 2px 0 8px rgba(0,0,0,.06);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.sidebar.closed { display: none !important; }

/* Logo — full width image, no text */
.sidebar-logo {
  padding: 16px;
  border-bottom: 1px solid #e8edf2;
}

.sidebar-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-section-label {
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: .8px;
  padding: 20px 18px 8px;
  text-transform: uppercase;
  margin: 0;
}

.sidebar-nav { list-style: none; padding: 0; margin: 0; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: background .15s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active { background: #eef3f8; color: #0b3a5c; font-weight: 600; }

.sidebar-nav a i { font-size: 18px; color: #0b3a5c; }

/* Modal Hide Helper */
.hide_important {
  display: none !important;
}

/* Modal Popups & Overlay Styling */
.TS_Overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px); /* Sleek modern frosted glass backdrop */
  z-index: 1050; /* Needs to be above everything including the header */
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.TS_Overlay.hide_important {
  display: none !important;
}

#TS_Popup_Reply,
#TS_Popup_Edit {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  width: 90%;
  max-width: 820px;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 32px !important;
  position: relative;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#TS_Popup_Thin {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  width: 90%;
  max-width: 530px;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 32px !important;
  position: relative;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Modal Inputs & Controls */
.TS_Popup_Input {
  background-color: #f1f3f5 !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 6px !important;
  color: #212529 !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

.TS_Popup_Input:focus {
  border-color: #0b3a5c !important;
  box-shadow: 0 0 0 0.2rem rgba(11, 58, 92, 0.25) !important;
  background-color: #ffffff !important;
}

.TS_btn {
  background-color: #0b3a5c !important;
  border: none !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  transition: background-color 0.15s ease !important;
  cursor: pointer !important;
  display: inline-block;
}

.TS_btn:hover {
  background-color: #072d49 !important;
  box-shadow: 0 4px 12px rgba(11, 58, 92, 0.2) !important;
}

/* Modal Close Button Styling */
#TS_Popup_Reply .bi-x,
#TS_Popup_Edit .bi-x,
#TS_Popup_Thin .bi-x,
#TS_Popup_Reply svg,
#TS_Popup_Edit svg,
#TS_Popup_Thin svg {
  font-size: 32px !important;
  width: 1em;
  height: 1em;
  color: #6c757d !important;
  cursor: pointer !important;
  transition: color 0.15s ease !important;
}

#TS_Popup_Reply svg:hover,
#TS_Popup_Edit svg:hover,
#TS_Popup_Thin svg:hover {
  color: #dc3545 !important;
}

/* ── Toolbar De-cluttering & Refactoring ── */
#TS_Tutorial_link.card {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

#TS_Tutorial_link.card .card-body {
  padding: 0 !important;
}

.TS_Tree_Menubar {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 32px !important;
  flex-wrap: wrap !important;
  border-top: 1px solid #d8e2ea !important;
  border-bottom: 1px solid #d8e2ea !important;
  padding: 12px 16px !important;
  margin: 15px 0 !important;
  background: transparent !important;
  width: 100% !important;
}

.TS_Tree_Menubar .col {
  flex: 0 0 auto !important;
  width: auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
}

.TS_Tree_Menubar a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #0b3a5c !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.TS_Tree_Menubar a p {
  order: 2 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin: 0 !important;
  font-style: normal !important;
}

.TS_Tree_Menubar a img,
.TS_Tree_Menubar a svg {
  order: 1 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
}

.TS_Tree_Menubar p {
  font-size: 14px !important;
  color: #555 !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

.TS_Tree_Menubar span {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
}

/* ── Node Color Strip Overrides ── */

/* Root Node (Default/Black) -> Dark steel blue-gray */
.get-node.get-black > rect:not(.get-box) {
  fill: #1f3b57 !important;
  stroke: #1f3b57 !important;
}

/* Supporting TE Node -> Rich dark green */
.get-node.get-green > rect:not(.get-box) {
  fill: #2e7d4f !important;
  stroke: #2e7d4f !important;
}

/* Highlighted Supporting TE Node -> Lighter vibrant green */
.get-node.get-lightgreen > rect:not(.get-box) {
  fill: #3c965f !important;
  stroke: #3c965f !important;
}

/* Refuting TR Node -> Rich dark red */
.get-node.get-darkred > rect:not(.get-box) {
  fill: #b93025 !important;
  stroke: #b93025 !important;
}

/* Highlighted Refuting TR Node -> Lighter vibrant red */
.get-node.get-pink > rect:not(.get-box) {
  fill: #d64438 !important;
  stroke: #d64438 !important;
}

/* ── Workspace & Topic Headers styling ── */
.TS_Workspace_Header {
  font-size: 15px !important;
  color: #555555 !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  margin-top: 15px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.TS_Workspace_Header a {
  color: #0b3a5c !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.TS_Workspace_Header a:hover {
  text-decoration: underline !important;
}

.TS_Topic_Header {
  font-size: 28px !important;
  color: #0b3a5c !important;
  font-weight: 700 !important;
  margin-top: 5px !important;
  margin-bottom: 20px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* ── Graph Card Container styling ── */
#mynetwork {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  margin-top: 15px !important;
  overflow: hidden !important;
}

/* ── Envelope SVG layout fixes for GetOrgChart page conflict ── */
.icon-btn svg rect,
.icon-btn svg polyline {
  stroke: white !important;
  fill: none !important;
  stroke-width: 2px !important;
}

/* ── Bootbox & Modal Close Button Styling Fix for Bootstrap 5 ── */
.bootbox-close-button.close,
.modal-header .close,
.modal-header .bootbox-close-button {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #64748b !important;
  text-shadow: none !important;
  opacity: 0.7 !important;
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  appearance: none !important;
}

.bootbox-close-button.close:hover,
.modal-header .close:hover {
  color: #0f172a !important;
  opacity: 1 !important;
  background: transparent !important;
  border: none !important;
}

/* ── Welcome Page Image Responsiveness & Layout Fixes ── */
.main img,
.IMG-0, .IMG-1, .IMG-2, .IMG-3, .IMG-4, .IMG-5, .IMG-6 {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 6px;
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.card {
  max-width: 100% !important;
  overflow: hidden !important;
}

