:root {
  --nav_typography-font-family: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nav_typography-font-weight: 600;      /* Clean, readable semi-bold for UI controls */
  --nav_typography-font-size: 14px;        /* Standard crisp dashboard font size */
  --nav_typography-letter-spacing: 0.02em; /* Micro-spacing to look premium */
  --nav_typography-text-transform: none;   /* Keeps dropdown options matching your data casing */
  --nav_typography-font-style: normal;

  /* Brand Colors */
  --dcm-brand-green: #00a984; /* Your traditional primary green */

  /* Fallback UI Colors (Until overridden by your dashboard settings) */
  --dcm-category-color: var(--dcm-brand-green);
}
/* Avada theme footer fix */
.fusion-tb-footer.fusion-footer {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   1. MAP CANVAS & GLOBAL SVG
   ========================================================================== */

#datacenter-svg {
  /*
  margin-top: -6rem;
  right: -5rem;*/
  position: relative;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  max-height: 95vh;
  /* Critical for GSAP Draggable on mobile */
    touch-action: none;

    /* JS switches this between centered entrance animation and top-left drag math. */
    transform-origin: 0px 0px;

}

#datacenter-svg text {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/* Override Illustrator's hardcoded SVG fonts */
#datacenter-svg text,
#datacenter-svg svg tspan {
    font-family: "Poppins", sans-serif !important;
    font-weight: 500 !important; /* 500 is the standard weight for Medium */
}

.datacenter-canvas {
  width: 100%;
  height: 100%;
  max-height: 640px;
  position: relative;
  z-index: 2;
  border-radius: 80px;
  border: 1px solid #00a984;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-top: 68px;
  margin-bottom: 4rem;

}

#datacenter-map-wrapper {
  position: relative;
}

.dc-tooltip-title,
.dc-tooltip-related,
.dc-tooltip-partners {
  display: block;
}

.dc-tooltip-title {
  margin-bottom: 3px;
}

.dc-tooltip-related {
  color: rgba(255, 255, 255, 0.88);
}

.dc-tooltip-partners {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: #ffffff;
  font-weight: 700;
}

.dc-tooltip-partner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.dc-tooltip-partner-icon img,
.dc-tooltip-partner-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.dcm-map-disclaimer-wrap {
  width: 100%;
  margin: 15px 0;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.dcm-map-disclaimer {
  max-width: 1100px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

.dcm-map-preloader {
  position: absolute;
  inset: 68px 0 4rem;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border: 0;
  border-radius: 80px;
}

.dcm-map-preloader-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(1, 1, 28, 0.1);
  box-shadow: 0 18px 60px rgba(1, 1, 28, 0.14);
}

.dcm-loader-mark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 169, 132, 0.18);
  border-top-color: #00a984;
  border-radius: 50%;
  animation: dcm-loader-spin 0.8s linear infinite;
}

.dcm-loader-text {
  color: #09213c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dcm-map-preloader.is-error .dcm-loader-mark {
  animation: none;
  border-color: #b32d2e;
}

@keyframes dcm-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   2. INTERACTIVE SVG COMPONENTS
   ========================================================================== */
.dc-component,
.dc-component * {
  pointer-events: all !important;
  cursor: pointer;
}

.dc-component {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.2s ease, fill 0.2s ease;
  fill: transparent;
}

.dc-component.hovering {
  transform: scale(1.02);
  filter: url(#hover-glow);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#datacenter-map-wrapper.is-zooming .dc-component,
#datacenter-map-wrapper.is-zooming .dc-map-target,
#datacenter-map-wrapper.is-zooming .dc-map-target * {
  transition: none !important;
}

#datacenter-map-wrapper.is-zooming .dc-component.hovering {
  transform: none !important;
  filter: none !important;
}

#datacenter-map-wrapper.is-zooming .dc-map-target.hovering *:not(.cat-target, .cat-target *) {
  stroke: inherit !important;
}

#datacenter-map-wrapper.is-zooming .datacenter-key button.hovering {
  background-color: #ffffff;
  color: #09213c;
}


.dc-map-target,
.dc-map-target * {
  pointer-events: all !important;
  cursor: pointer;
}

.dc-map-target.hovering *:not(.cat-target, .cat-target *) {
  stroke: #00a984 !important;
}




/* ==========================================================================
   3. MAP UI KEY & CONTROLS (THE PROTECTED ZONE)
   ========================================================================== */
.datacenter-key {
  width: auto;
  max-width: 940px;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 3;
}

@media screen and (min-width: 1499px) {
  .datacenter-key {
        transform: translateX(-50%);
  }
}

.dcm-category-buttons {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}


/* Base styling for left side category buttons */
.datacenter-key button {
  width: 190px;
  height: 50px;
  cursor: pointer;
  font-family: var(--nav_typography-font-family);
  font-weight: var(--nav_typography-font-weight);
  font-size: 14px;
  letter-spacing: var(--nav_typography-letter-spacing);
  text-transform: var(--nav_typography-text-transform);
  font-style: var(--nav_typography-font-style, normal);
  background-color: #ffffff;
  color: #09213c;
  border: 1px solid black;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: background-color .25s ease, transform .25s ease;
}

.datacenter-key button.hovering {
  background-color: #00a984;
  color: #fff;
}

/* --- Map Zoom UI (PROTECTED SPECIFICITY) --- */
.dcm-container-max .datacenter-key .map-zoom-ui {
  display: flex;
  margin-top: 1.5rem;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

/* Specifically isolating these from the base button styles */
.dcm-container-max .map-zoom-ui button {
  border: none;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.dcm-container-max .map-zoom-ui .zoom-in,
.dcm-container-max .map-zoom-ui .zoom-out,
.dcm-container-max .map-zoom-ui .zoom-reset {
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent !important; /* Force icons over base button colors */
  box-shadow: none !important; /* Remove base button shadow */
  height: 2rem;
  width: 2rem;
  padding: 0;
  border-radius: 0;
  transition: transform .25s ease;
}

.dcm-container-max .map-zoom-ui .zoom-in    { background-image: url(../svg/icons/plus.svg); }
.dcm-container-max .map-zoom-ui .zoom-out   { background-image: url(../svg/icons/minus.svg); }
.dcm-container-max .map-zoom-ui .zoom-reset { background-image: url(../svg/icons/refresh.svg); }

.dcm-container-max .map-zoom-ui button:hover { transform: scale(1.1); }

.map-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Crucial: so it doesn't block clicks to the map */
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px 25px;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.5s ease;
}

.hint-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hint-content p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.hint-icon {
  background-image: url(../svg/icons/scroll-drag.svg);
  background-size: 50px;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
}

.hint-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   4. PARTNER TABS NAVIGATION
   ========================================================================== */
.dcm-partners-tabs-container {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    width: 100%;
    max-width: 1200px; /* Cap for the absolute nav */
}

.dcm-tabs-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: none;
    z-index: 1;
    position: relative;
    margin-top: -1px;
}



.tab-link {
    display: block;
    padding: 12px 30px;
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-bottom: none;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-radius: 4px 4px 0 0;
}

.tab-link:hover {
    color: #00a984;
}

.tab-link.active {
    background: #fff;
    border-top: 3px solid #00a984;
    color: #00a984;
}

/* ==========================================================================
   5. PARTNER DRAWER & CONTENT
   ========================================================================== */
.dcm-tabs-content-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0px 15px 35px rgba(0,0,0,0.15);
    max-height: 70vh;
    overflow-y: auto;
}

.tab-content {
    overflow: hidden; /* Critical for the curtain effect */
    transform-origin: top center; /* Ensures scaling/growth happens downwards */
    display: none; /* Keep your existing display logic */
}
.tab-content {
    display: none;
    opacity: 0;
    margin-top: -1px;
    border: 1px solid #00a984;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.tab-content .company-external-link:hover {
    color: #00a984;
}

/* Ensure the container has room at the top */
.tab-content {
    padding-top: 40px;
    position: relative;
}

/* 1. Labels for the Name Column */
.partner-row {
    align-items: flex-start;
}
.partner-row:first-of-type .partner-column-name {
    position: relative;
}

.partner-row .partner-column-name,
.partner-row .partner-column-industries {
   height: 100%;
}

.partner-row:first-of-type .partner-column-name,
.partner-row:first-of-type .partner-column-industries {
   padding-top: 3rem;
}

.partner-row:first-of-type .partner-column-name::before {
    content: "Company/Partner";
    position: absolute;
    top: 1rem; /* Adjust based on your line-height */
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* 2. Labels for the Industry Column */
.partner-row:first-of-type .partner-column-industries {
    position: relative;
}

.partner-row:first-of-type .partner-column-industries::before {
    content: "Primary Industry";
    position: absolute;
    top: 1rem; /* Adjust based on your line-height */
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Floating Close Button in Drawer */

/* ===== Close Button ===== */
.dcm-drawer-close-wrap {
    position: absolute;
    top: -1rem;
    right: -1.25rem;
    z-index: 10;
}
.dcm-drawer-close-btn {
  border: 1px solid #00a984;
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  /* Removed border-radius for site consistency */
  border: none;
  background: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.dcm-drawer-close-btn:hover {
  background: #00a984; /* subtle accent color */
  color: #fff;
  border: 1px solid transparent
}



/* ==========================================================================
   6. PARTNER DATA GRID
   ========================================================================== */
.partner-grid {
  background: #fff;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
  max-height: calc(100vh - 262px);
  overflow: auto;
   scrollbar-width: thin;
  scrollbar-color: #00a984 transparent;
}

.partner-table-wrap {
  padding: 0;
}

.dcm-partners-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.dcm-partners-table th,
.dcm-partners-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(1, 1, 28, 0.08);
  text-align: left;
  vertical-align: middle;
}

.dcm-partners-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8faf9;
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dcm-partners-table th:first-child,
.dcm-partners-table th:nth-child(2) {
  padding-left: 20px;
}

.dcm-partners-table tbody tr:hover {
  background: rgba(0, 169, 132, 0.035);
}

.dcm-partner-logo-placeholder {
  display: block;
  width: 42px;
  height: 28px;
  background: rgba(1, 1, 28, 0.06);
}

.dcm-partners-table .partner-company-cell {
  width: 200px;
  min-width: 200px;
  text-align: center;
}

.dcm-tab-company-cell-wrapper {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  max-width: 160px;
  text-align: center;
}

.dcm-tab-company-cell-wrapper img {
  max-width: 100px !important;
  height: auto;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.dcm-tab-company-name {
  display: block;
  color: #008469;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.dcm-tab-company-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px;
}

.dcm-tab-company-logo-link:hover {
  text-decoration: none !important;
}

.dcm-tab-company-text-link {
  display: inline-block !important;
  line-height: 1.25;
}

.dcm-partners-tabs-container td a {
  text-decoration: none !important;
  color: inherit !important;
}

.dcm-partners-tabs-container td a:hover {
  text-decoration: underline !important;
}

.dcm-partners-tabs-container td a.dcm-tab-company-link {
  color: #008469 !important;
  text-decoration: none !important;
}

.dcm-partners-tabs-container td a.dcm-tab-company-link:hover {
  text-decoration: underline !important;
}

.dcm-partners-tabs-container td a.dcm-map-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  color: #008469 !important;
  font-weight: 500 !important;
}

.dcm-partners-tabs-container td a.dcm-map-link:hover {
  text-decoration: underline !important;
}

.dcm-partners-tabs-container td a.dcm-map-link svg,
.dcm-partners-tabs-container td a.dcm-map-link .dashicons {
  color: #008469 !important;
  font-size: 16px !important;
  width: 16px !important;
  height: 16px !important;
}

.dcm-partners-table .partner-profile-link {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.25;
  text-transform: none;
}

.partner-row {
    display: grid;
    grid-template-columns: 35% 65%;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    align-items: center;
}

.partner-column-name {
    padding: 10px 20px;
    background-color: #fafafa;
}

.partner-column-industries {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.partner-profile-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00a984;
}



/* Mobile updates  */

@media screen and (max-width: 799px) {

  /* 1. Turn the wrapper into a flex column so we can easily stack elements */
  #datacenter-map-wrapper {
      height: auto !important; /* Remove the fixed height trap */
      display: flex;
      flex-direction: column;
  }

  /* 2. Give the map canvas the fixed height, and render it FIRST */
  .datacenter-canvas {
      border-radius: 1rem;
      height: clamp(320px, 84vh, 530px); /* Moved height from the wrapper to here */
      order: 1; /* Forces it to the top */
      margin-top: 1.5rem;
      margin-bottom: 2rem !important;
  }

  /* 3. Put the buttons in normal document flow, rendering SECOND */
  .dcm-container-max .datacenter-key {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      width: 100%;
      order: 2; /* Forces it below the map */

      /* Reset absolute positioning so it pushes the logo marquee down naturally */
      position: relative;
      bottom: auto;
      top: auto;
      left: auto;
      transform: none;
      padding-bottom: 1rem; /* Breathing room before the logo marquee */
  }

  .dcm-container-max .datacenter-key .dcm-category-buttons {
      grid-column: span 2;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      width: 100%;
  }

  /* Force the Zoom UI to span across both columns */
  .dcm-container-max .datacenter-key .map-zoom-ui {
      grid-column: span 2;
      grid-row: 1;
      margin-top: 0;
      margin-bottom: 0.5rem;
      display: flex;
      justify-content: flex-start;
      gap: 1.5rem;
  }

  /* Ensure category buttons start on the second row */
  .dcm-container-max .datacenter-key button[data-category] {
      grid-row: auto;
      width: 100%;
      margin: 0;
      padding: 12px 8px;
      font-size: 14px;
  }

  /* ... Keep your existing mobile tab styles below this point ... */


    .dcm-tabs-nav {
        display: flex;
        justify-content: space-between;
        gap: 0.5cqi; /* Gap scales with the container too! */
        padding: 0;
        list-style: none;
    }

    .dcm-tabs-nav .tab-item {
        flex: 1; /* Force them to share the space equally */
        text-align: center;
    }

    .dcm-tabs-nav .tab-link {
        display: block;
        padding: 10px 4px;
        text-decoration: none;
        white-space: nowrap;
        border-radius: 4px;
        /* THE MAGIC LINE */
        font-size: clamp(10px, 3.2cqi, 16px);
        border: 1px solid #e2e2e2!important;
        font-weight: 600;

        transition: all 0.2s ease;
    }

    .dcm-tabs-nav .tab-link[aria-selected="true"] {
        border-bottom: 1px solid #00a984;
        color: #00a984;
    }

    .dcm-drawer-close-wrap {
      top: -2.7rem;
    }

    /* 2. STACK THE PARTNER ROWS */
    .partner-row {
        display: flex !important;
        flex-direction: column !important; /* Stack columns vertically */
        padding: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 15px;
        background: #fff;
    }

    /* 3. STYLE THE COLUMNS AS BLOCKS */
    .partner-column-name {
        width: 100% !important;
        margin-bottom: 8px;
        font-size: 16px;
    }

    .partner-column-industries {
        width: 100% !important;
        font-size: 13px;
        color: #666;
        padding-top: 8px;
        border-top: 1px dashed #eee;
    }

    /* Hide the 'N/A' industries to save space on mobile */
    .partner-column-industries:contains("N/A") {
        display: none;
    }

    /* Ensure links don't break layout */
    .company-external-link {
        word-break: break-word;
        line-height: 1.3;
        display: inline-block;
    }

    /* Adjust the Close Button Wrap for Mobile */
    .dcm-drawer-close-wrap {
        text-align: center;
        margin-top: 20px;
    }

.dcm-container-max .datacenter-key {
    display: grid;
    /* Create two equal columns */
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: calc(100% - 4rem);
    bottom: 2rem;
    top: auto;
    left: 50%;
    transform: translate(-50%);
  }

  .dcm-container-max .datacenter-key .dcm-category-buttons {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }

  /* 1. Force the Zoom UI to span across both columns */
  .dcm-container-max .datacenter-key .map-zoom-ui {
    grid-column: span 2;
    /* Force it to the first row visually */
    grid-row: 1;

    /* Reset margins for the grid layout */
    margin-top: 0;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
  }

  /* 2. Ensure category buttons start on the second row */
  .dcm-container-max .datacenter-key button[data-category] {
    grid-row: auto; /* Let them flow naturally into the columns */
    width: 100%;
    margin: 0;
    padding: 12px 8px; /* Bigger tap targets for mobile */
    font-size: 14px;
  }

}

@media (max-width: 768px) {
  .dcm-container-max {
    display: flex !important;
    flex-direction: column !important;
  }

  .dcm-partners-tabs-container {
    order: 0 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 30 !important;
    margin: 0 0 10px !important;
  }

  .dcm-partners-tabs-container .tab-content.active {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 35 !important;
    max-height: min(68vh, 520px) !important;
    overflow: visible !important;
    -webkit-overflow-scrolling: touch;
  }

  .partner-table-wrap {
    position: static !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    --dcm-scroll-cue-opacity: 0;
    --dcm-scroll-cue-arrow-opacity: 0;
    --dcm-scroll-cue-arrow-scale: 1;
  }

  .dcm-partners-tabs-container .dcm-drawer-close-wrap {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    width: 42px !important;
    height: 42px !important;
    z-index: 40 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .dcm-partners-tabs-container .dcm-drawer-close-btn {
    position: static !important;
    width: 38px !important;
    height: 38px !important;
    padding: 4px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(1, 1, 28, 0.16) !important;
    z-index: 41 !important;
  }

  .partner-table-wrap.dcm-scroll-cue-active::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    width: 58px;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
    opacity: var(--dcm-scroll-cue-opacity, 0);
  }

  .partner-table-wrap.dcm-scroll-cue-active::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 9;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 16px solid #008469;
    pointer-events: none;
    opacity: var(--dcm-scroll-cue-arrow-opacity, 0);
    transform: translateY(-50%) scale(var(--dcm-scroll-cue-arrow-scale, 1));
    transform-origin: center;
  }

  .dcm-partners-table {
    width: max-content !important;
    min-width: 760px !important;
    table-layout: auto !important;
  }

  .dcm-partners-table th,
  .dcm-partners-table td {
    min-width: 130px !important;
    white-space: normal !important;
  }

  .dcm-partners-table th:first-child,
  .dcm-partners-table td:first-child {
    min-width: 210px !important;
  }

  #datacenter-map-wrapper {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 12px !important;
  }

  .datacenter-canvas {
    order: 1 !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 320px !important;
    max-height: 420px !important;
    margin: 12px 0 0 !important;
    border-radius: 18px !important;
  }

  #datacenter-svg {
    max-height: none !important;
  }

  .dcm-map-preloader {
    inset: 12px 0 auto !important;
    height: min(88vw, 420px) !important;
    max-height: 420px !important;
    border-radius: 18px !important;
  }

  .dcm-container-max .datacenter-key,
  .datacenter-key {
    order: 2 !important;
    position: static !important;
    inset: auto !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 12px !important;
    z-index: 5 !important;
  }

  .dcm-container-max .datacenter-key .dcm-category-buttons,
  .dcm-category-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .dcm-container-max .datacenter-key button[data-category],
  .datacenter-key button[data-category] {
    width: auto !important;
    min-height: 38px !important;
    height: auto !important;
    padding: 9px 13px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .dcm-container-max .datacenter-key .map-zoom-ui,
  .dcm-container-max .map-zoom-ui,
  .map-zoom-ui {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 20 !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin: 0 !important;
    transform: scale(0.85) !important;
    transform-origin: top right !important;
  }

  .dcm-container-max .map-zoom-ui .zoom-in,
  .dcm-container-max .map-zoom-ui .zoom-out,
  .dcm-container-max .map-zoom-ui .zoom-reset {
    width: 1.65rem !important;
    height: 1.65rem !important;
  }

  .map-hint {
    display: none !important;
  }
}

/* ==========================================================================
   7. LOGO MARQUEE
   ========================================================================== */
.dcm-logo-slider-wrap {
  width: 100%;
  padding: 3rem 0;
  overflow: hidden;
  background: transparent;
}

.dcm-logo-slider {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.dcm-logo-slider .swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
  transition-property: transform;
  transition-timing-function: linear !important;
  align-items: center;
}

.dcm-logo-slider .partner-logo-slide {
  width: auto !important;
  height: auto;
  flex-shrink: 0;
  position: relative;
  transition-property: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcm-logo-slider .partner-logo-slide a {
  display: flex;
  align-items: center;
}

.dcm-logo-slider .partner-logo-slide img {
  height: 45px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55) contrast(1.2);
  mix-blend-mode: multiply;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.dcm-logo-slider .partner-logo-slide a:hover img,
.dcm-logo-slider .partner-logo-slide img:hover {
  filter: grayscale(0%) opacity(1) contrast(1);
  transform: scale(1.05);
}
