:root {
  /* Base Layout */
  --background-page: #ffffff;
  --background-header-footer: #ffffff;
  --background-form: #f5f5f5;
  --border-subtle: #d0d0d0;

  /* Text Colors */
  --text-primary: #1c1c1c;
  --text-secondary: #6e6e6e;
  --text-heading: #1c1c1c;

  /* Interactive States */
  --link-default: #1c1c1c;
  --link-hover: #e4bc1c;

  /* Button Colors */
  --button-primary-bg: #3a3a3a;
  --button-primary-hover: #e4bc1c;

  /* Alerts / Highlights */
  --highlight-alert: #e63946;
  --highlight-badge-text: #ffffff;

  /* Dropdown / Overlay */
  --overlay-bg: rgba(0, 0, 0, 0.15);
  --dropdown-bg: #ffffff;

  /* Misc */
  --form-border: #cccccc;
  --input-focus-outline: #999999;
}

/* ============================= */
/*         RESET + BASE          */
/* ============================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh; /* Optional: prevents bounce on mobile */
}

/* ============================= */
/*           HEADER              */
/* ============================= */
#header {
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 1000;
  background-color: var(--background-header-footer);
  transition: margin-top 0.3s ease;
  position: relative; /* ✅ not fixed */
}

/* --- Advertisement Bar --- */
.header__advertisement {
  height: 45px;
  overflow: hidden;
  position: relative;
  background: inherit;
  display: flex;
  align-items: center;
}

.header__advertisement .scrolling-wrapper {
  display: flex;
  width: max-content;
  position: absolute;
  white-space: nowrap;
  animation: scroll-left 120s linear infinite;
}

.header__advertisement .scrolling-text {
  display: flex;
}

.header__advertisement .scrolling-text a {
  color: rgb(188, 36, 36);
}

.header__advertisement .scrolling-text span {
  padding-right: 3rem;
  white-space: nowrap;
  display: inline-block;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* --- Header Top --- */
.header__top {
  background: var(--background-header-footer);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  border-bottom: 1px solid #dbdbdb;;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.sticky-header-top {
  position: fixed;
  top: 0; /* Now it floats at top, but only once ad is gone */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  background: var(--background-header-footer);
}

.header__top-placeholder {
  height: 0;
  transition: height 0.3s ease;
}
.sticky-header-active + .header__top-placeholder {
  height: auto;
}

.header__logo-container {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.header__logo-img {
  width: 350px;
  height: auto;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.header__logo-img-mobile {
  height: auto;
  width: 125px;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.header__company-name {
  color: var(--text-heading);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2em;
  font-weight: 800;
  text-align: center;
  flex-basis: 100%;
}

.header__company-name a {
  color: inherit;
  text-decoration: none;
}

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

.header__top--right a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

/* Only fix the top bar */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Let header__bottom scroll with page */
.header__bottom {
  position: relative; /* or remove position entirely */
  display: flex; /* assuming you want it shown */
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  width: 100%;
  box-sizing: border-box;
  background: var(--background-header-footer);
  border-bottom: 1px solid #dbdbdb;
}

/* --- Admin Link --- */
#adminLink {
  content: url("/icons/admin-panel-icon-lightmode.svg");
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

#adminLink a {
  color: var(--text-primary);
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  padding-right: 20px;
  transition: color 0.3s ease;
}

#adminLink a:hover {
  color: var(--button-primary-hover);
}

/* --- Center & Right Nav --- */
.header__nav--right {
  display: flex;
  flex-wrap: wrap;
}

.header__nav-right-main {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.header__nav--left {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.header__nav--right {
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  flex: 0 0 auto;
  padding-right: 40px;
  z-index: 2;
}

.header__nav--right-icons {
  display: flex;
  gap: 20px;
  padding: 10px;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* --- Navigation Links --- */
.header__nav--left a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.header__nav--left a #text {
  flex-wrap: wrap;
}

.header__nav--right a:hover,
.header__nav--left a:hover {
  color: var(--button-primary-hover);
}

.notification-bubble {
  position: absolute;
  top: -4px;
  right: -4px;
  background: red;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 0 2px black;
}

/* Winner badge positioning */
.winner-badge {
  position: absolute;
  top: -10px;
  right: -13px;
  background-color: #facf20;
  color: black;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 12px;
  z-index: 10;
}

.account-tab-button {
  position: relative;
}

.auth-links a {
  margin-left: 10px;
  display: inline-block;
}

/* ============================= */
/*       HAMBURGER MENU          */
/* ============================= */
.header__tabsdropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  gap: 6px;
  padding: 5px 8px;
  background-color: #e4bc1c;
  border-radius: 10px;
}

.header__tabsdropdown .bar {
  width: 100%;
  height: 4px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================= */
/*       DROPDOWN MENU           */
/* ============================= */
.dropdown-menu {
  /* Combine all transition properties in a single declaration */
  transition: opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease, height 0.3s ease;
  position: fixed;
  top: 100px;
  right: 0;
  width: 100%;
  background-color: var(--background-header-footer);
  border: 1px solid var(--background-header-footer);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu.show {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
  visibility: visible;
  margin-top: 80px;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
}

.dropdown-menu li {
  border-bottom: 1px solid var(--border-subtle);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a,
#darkModeToggleDropdown.dark-mode-toggle {
  display: flex;
  justify-content: center;
  padding: 36px 0;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-weight: 600;
  user-select: none;
  font-size: larger;
}

#darkModeToggleDropdown.dark-mode-toggle {
  cursor: pointer;
}

.dropdown-menu a:hover,
#darkModeToggleDropdown.dark-mode-toggle:hover {
  background-color: var(--dropdown-bg);
  border-radius: 5px;
}

#header,
.header__advertisement {
  transition: margin-top 0.3s ease, height 0.3s ease;
}

/* ============================= */
/*     CART LINK AND COUNTS      */
/* ============================= */
.header__top-cart-link {
  display: flex;
  align-items: center;
  margin-top: 5px;
  position: relative;
}

.header__bottom-cart-link a {
  color: var(--text-primary);
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
}

.header__top-cart-link a {
  color: var(--text-primary);
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  padding: 20px;
}

div#tabsDropdownContainer.header__tabsdropdown img {
  width: 55px;       /* control size */
  height: auto;      /* keep aspect ratio */
  padding: 12px;     /* touch-friendly tap target */
  display: block;    /* remove inline gaps */
}

.header__top-cart-link a:hover,
.header__bottom-cart-link a:hover {
  color: var(--button-primary-hover);
}

.header__top-cart-count,
.header__bottom-cart-count {
  position: absolute;
  top: -30px;
  right: -15px;
  background-color: var(--highlight-alert);
  color: var(--background-header-footer);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 12px;
  z-index: 10;
}

.header__top-cart-count.wide-count {
  right: -7px; /* Slightly move right to center 99+ */
}

.header__bottom-cart-count.wide-count {
  right: -20px; /* Adjust as needed */
}

/* ============================= */
/*           FOOTER              */
/* ============================= */
.footer {
  background-color: var(--background-header-footer);
  color: var(--text-primary);
  border-top: 1px solid #dbdbdb;;
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.footer__signup {
  text-align: initial;
  padding-bottom: 25px;
}

.footer__signup h3 {
  font-size: 1.8em;
  font-weight: 800;
  color: var(--text-heading);
}

.footer__signup-container {
  display: flex;
  flex-direction: column;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  gap: 20px;                 /* smaller gap between image and content */
  max-width: 800px;          /* slightly smaller max width for tighter layout */
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;        /* center text in content */
}

.footer__logo-wrap {
  flex: 0 0 auto;
  margin-left: 0;            /* remove big left margin */
}

.footer__logo-img {
  max-width: 175px;          /* moderate image size */
  height: auto;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.footer__signup-content {
  display: flex;
  flex-direction: column;
  align-items: center;       /* center content inside */
  gap: 8px;                  /* smaller spacing inside content */
  flex: 1 1 auto;
  text-align: center;        /* center text and button */
  max-width: 400px;
}

.footer__signup-content h3 {
  margin-top: 0;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.footer__form button {
  padding: 10px 20px;
  background-color: #e4bc1c;
  color: var(--background-header-footer);
  font-weight: bold;
  border: 1px solid #e4bc1c;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer__form button:hover {
  background-color: #bf9d17;
  border: 1px solid #bf9d17;
}

.footer__note {
  font-size: 0.9em;
  color: var(--text-primary);
  text-align: center;        /* keep text centered */
}

.footer__note a {
  color: var(--button-primary-hover);
  text-decoration: underline;
}

.footer__links {
  border-top: 1px solid #dbdbdb;
  padding: 30px 0;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  flex-direction: column;
  align-items: center;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.footer__nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: color 0.3s ease;
  padding: 10px;
}

.footer__nav a:hover {
  color: var(--button-primary-hover);
}

.footer__icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-direction: column;
}

.footer__payments {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-direction: column;
}

.footer__icons img {
  height: 50px;
  object-fit: contain;
}

.footer__awareness {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-direction: column;
}

.footer__bottom {
  text-align: center;
  font-size: 0.9em;
  color: var(--text-primary);
  border-top: 1px solid #dbdbdb;
  padding: 20px 0;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Default margin-left for dark mode toggle icon */
#darkModeToggle[data-theme="light"] img {
  content: url("../icons/moon-toggle-icon-lightmode.svg");
  cursor: pointer;
}

#darkModeToggle[data-theme="dark"] img {
  content: url("../icons/sun-toggle-icon-darkmode.svg");
  cursor: pointer;
}

/* Hover states */
/* #darkModeToggle[data-theme="light"]:hover img {
  content: url("../icons/moon-toggle-icon-hover.svg");
} */

/* #darkModeToggle[data-theme="dark"]:hover img {
  content: url("../icons/sun-toggle-icon-hover.svg");
}
 */
.header__nav--left,
.header__top--right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header__wallet {
  width: auto;
  display: flex;
  padding: 2px 5px;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  font-weight: 600;
  background-color: #e0e0e0;
  border-radius: 5px;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.header__credit {
  width: auto;
  display: flex;
  padding: 2px 5px;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  font-weight: 600;
  background-color: #e0e0e0;
  border-radius: 5px;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

#headerCreditBalance {
  display: flex;
}

#headerBottomCartLinkContainer,
#adminLinkContainer,
#accountIconWrapper {
  align-items: center;
  padding: 5px 8px;
  background-color: #e4bc1c;
  border-radius: 10px;
}

#headerBottomCartLinkContainer:hover,
#adminLinkContainer:hover,
#accountIconWrapper:hover {
  opacity: 0.8;
}

/* Top-up (+) button */
.header-wallet-topup-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  padding-right: 1px;
  width: 22px;
  height: 22px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  background-color: #e4bc1c;
  color: black;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Top-up (+) button */
.header-store-credit-placeholder {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  padding-right: 1px;
  width: 22px;
  height: 22px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-wallet-balance,
.header-credit-balance {
  font-size: 0.8rem;
}

.header__balances {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}

.header__nav--center {
  flex: 0 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header__nav--left {
  justify-content: flex-start;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.header__top--right {
  justify-content: flex-end;
}

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

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

.tp-trustscore,
.tp-reviews {
  color: #333;
  text-decoration: none;
}

.tp-score-and-stars-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.tp-stars {
  display: flex;
  align-items: center;
}

.social-link {
  display: inline-flex;       /* Align icon and text horizontally */
  align-items: center;        /* Vertically center icon with text */
  padding: 8px 12px;          /* Add some space around */
  background-color: #1877f2;  /* Facebook blue */
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  gap: 8px;                   /* Space between icon and text */
  transition: background 0.3s;
}

.social-link:hover {
  background-color: #145dbf;
}

.fb-link i {
  font-size: 16px;
}

.fb-text {
  font-size: 14px;
}

.trustpilot-link {
  background: #00b67a; /* Trustpilot green */
}

.trustpilot-link:hover {
  background: #009e68; /* Slightly darker green */
}

.trustpilot-text {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.trustpilot-placeholder .trustpilot-img {
  height: 20px;   /* adjust as needed */
  width: auto;
  display: block;
}

.trustpilot-placeholder .trustpilot-img:hover {
  opacity: calc(0.6);
}

/* Default: show desktop links, hide dropdown */
.desktop-links {
  display: flex;
  gap: 1rem;
}
.mobile-dropdown {
  display: none;
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  color: #1c1c1c;
  padding: 10px 10px;
}

/* Dropdown container */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  min-width: 180px;
  z-index: 999;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-5px);
}

/* Hide dropdown by default */
.mobile-dropdown .dropdown-content {
  display: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-direction: column; /* keep stacked */
}

/* Show when parent has .open */
.mobile-dropdown.open .dropdown-content {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Arrow styling + flip */
.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Individual dropdown links */
.dropdown-content a {
  padding: 8px 12px;  /* vertical and horizontal spacing */
  display: block;
  text-decoration: none;
  display: block;
  color: #1c1c1c;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background: #f0f0f0;
  color: #e4bc1c;
  border-left: 3px solid #e4bc1c;
}

/* Optional special link style */
a.mobile-dropdown-instant-wins {
  color: #9e9e9e !important;
  font-style: italic;
  pointer-events: none; /* optional: prevent click */
}

/* Responsive breakpoint */
@media (max-width: 1282px) {
  .desktop-links {
    display: none;
  }
  .mobile-dropdown {
    display: block;
  }
}

/* Responsive breakpoint */
@media (max-width: 1024px) {
  .desktop-links {
    display: none;
  }
  .mobile-dropdown {
    display: none;
  }

  .trustpilot-widget {
    flex-direction: column;
  }

  .tp-score-and-stars-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .header__bottom {
    flex-direction: row;
    gap: 40px;
  }

  .tp-trustscore {
    font-size: small;
  }

  .tp-reviews {
    text-align: center;
    font-size: small;
  }

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

/* ============================= */
/*         RESPONSIVE            */
/* ============================= */

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
  .main.privacy-policy-main,
  .main.terms-main,
  .main.faq-main {
    padding-left: 40px;
    padding-right: 40px;
  }

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

@media (max-width: 845px) {
  .header__company-name {
    display: none;
  }
}

@media (max-width: 600px) {
  .header__logo-img {
    content: url('../images/logo-footer.png');
    height: 100px !important;
    width: 125px !important;
  }
  .header__logo-img-mobile {
    content: url('../images/logo-footer.png');
    height: 100px !important;
    width: 125px !important;
  }
}

@media (max-width: 560px) {
    .header__nav-right-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .header__top {
    padding: 20px 20px;
  }
}

/* Tablet Landscape / Laptop */
@media (min-width: 769px) and (max-width: 1024px) {
  .header__admin-link,
  .header__nav--right {
    width: 100%;
    justify-content: center;
  }

  .header__admin-link {
    margin-top: -50px;
    margin-left: -18px;
  }

  .header__bottom {
    padding: 15px 60px;
  }

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

/* Desktop */
@media (min-width: 1025px) {
/*   #header {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 1000;
    background-color: var(--background-header-footer);
    transition: margin-top 0.3s ease;
    position: relative;
  } */

  .header__top-right {
    display: none;
  }

  .header__bottom {
    display: flex;
  }

  .header__tabsdropdown,
  .header__top-cart-link {
    display: none;
  }

  .header__logo-img-mobile {
    display: none;
  }

  .footer__nav {
    flex-direction: row;
    justify-content: center;
  }
  .footer__signup-container {
    flex-direction: row;
    justify-content: center;
  }

  .footer__icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-direction: row;
  }

  .footer__payments {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-direction: row;
  }

  .footer__awareness {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-direction: row;
  }

}

@media (max-width: 1024px) {

  body {
    background-color: #ffffff !important;
  }

  main.account-main {
    background-color: #ffffff !important;
  }

  .account-container {
    box-shadow: none !important;
  }

  .account-details-container {
    display: flex;
    flex-direction: column;
  }

  .account-tab-content {
    padding: 0;
  }

/*   .tab-title {
    justify-content: left;
    margin-bottom: 0;
  } */

  div.account-stats-grid h4 strong {
    display: flex;
    justify-content: center;
  }
  
  /* Show dropdown menu icon */
  #tabsDropdownContainer {
    display: flex !important;
  }

  /* Hide left navigation */
  #hrefRaffles,
  #hrefCompetitions,
  #hrefWinners {
    display: none !important;
  }

  #accountIconWrapper,
  #adminLinkContainer {
    display: none !important;
  }

  /* Hide center navigation */
  .header__nav--center {
    display: none !important;
  }

  /* Show mobile logo */
  #hrefRafflesMobile {
    display: flex !important;
  }
}
