 :root {
    --h: 64px;
    --bg: #0b0f19;
    --panel: #0f1526;
    --blue: #0a5bd3
  }

  * {
    box-sizing: border-box
  }

  /* Fixed header */
  .tims-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--h);
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }

  .tims-topbar-spacer {
    height: var(--h)
  }

  /* Logo */
  .tims-logo img {
    height: 36px;
    width: auto;
    display: block;
    background: var(--blue);
    padding: 6px 8px;
    border-radius: 12px
  }

  /* Hamburger */
  .tims-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    display: grid;
    place-content: center;
    gap: 4px;
    cursor: pointer
  }

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

  /* Overlay + drawer */
  .tims-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9998
  }

  .tims-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(84vw, 360px);
    background: var(--panel);
    z-index: 9999;
    transform: translateX(105%);
    transition: transform .2s ease;
    padding: 14px;
    border-left: 1px solid rgba(255, 255, 255, .10)
  }

  .tims-drawer.open {
    transform: translateX(0)
  }

  .tims-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 2px 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92)
  }

  .tims-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1
  }

  /* Menu items */
  .tims-nav a,
  .tims-nav summary {
    display: block;
    color: rgba(255, 255, 255, .90);
    text-decoration: none;
    padding: 11px 12px;
    border-radius: 12px
  }

  .tims-nav a:hover,
  .tims-nav summary:hover {
    background: rgba(255, 255, 255, .08)
  }

  /* Submenus (obvious ▸ / ▾ arrows) */
  .tims-nav details {
    margin-bottom: 6px
  }

  .tims-nav summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    position: relative;
    padding-right: 34px;
    background: rgba(255, 255, 255, .04)
  }

  .tims-nav summary::-webkit-details-marker {
    display: none
  }

  .tims-nav summary::after {
    content: "▸";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .85
  }

  .tims-nav details[open]>summary::after {
    content: "▾"
  }

  .tims-nav details[open]>summary {
    background: rgba(255, 255, 255, .08)
  }

  /* Nested submenu indentation + slightly smaller padding */
  .tims-nav details details {
    margin: 6px 0 0 10px
  }

  .tims-nav details details summary {
    font-weight: 600;
    background: transparent
  }

  .tims-nav details details a,
  .tims-nav details details summary {
    padding: 9px 12px
  }

.tims-breadcrumb-layer{
  background: #f2f4f7; /* light gray */
  border-bottom: 1px solid #e0e3e8;
  padding: 12px 14px;
}

.tims-breadcrumb-container{
  max-width: 1200px;
  margin: 0 auto;
}

.tims-breadcrumb-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.tims-breadcrumb-item a{
  text-decoration: none;
  color: #0a5bd3;
  font-weight: 500;
}

.tims-breadcrumb-item a:hover{
  text-decoration: underline;
}

.tims-breadcrumb-item .active{
  color: #333;
  font-weight: 600;
}

.tims-breadcrumb-separator{
  color: #999;
  font-size: 13px;
}
.tims-footer {
    background: #0f1526;
    color: rgba(255, 255, 255, .82);
    border-top: 1px solid rgba(255, 255, 255, .10);
    margin-top: 24px
  }

  .tims-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 14px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap
  }

  .tims-footer a {
    color: #6aa8ff;
    text-decoration: none
  }

  .tims-footer a:hover {
    text-decoration: underline
  }

  .tims-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px
  }

  .tims-footer-logo {
    height: 40px;
    width: auto;
    background: #0a5bd3;
    padding: 8px 10px;
    border-radius: 12px
  }

  .tims-footer-name {
    font-weight: 700;
    color: rgba(255, 255, 255, .92)
  }

  .tims-footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
  }

  .tims-footer-powered {
    display: flex;
    flex-direction: column;
    gap: 6px
  }

  .tims-footer-established {
    font-size: 13px;
    color: rgba(255, 255, 255, .65)
  }

  .tims-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding: 12px 14px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .65)
  }

  @media (max-width:820px) {
    .tims-footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center
    }

    .tims-footer-links {
      justify-content: center
    }
  }

@media (max-width: 480px){
  .tims-breadcrumb-list{
    font-size: 13px;
  }
}

  @media (max-width:420px) {
    :root {
      --h: 58px
    }

    .tims-logo img {
      height: 32px;
      padding: 5px 7px
    }
  }