  
html, body {
  margin: 0;
}

body {
  background-image: url("/wp-content/themes/comcash/assets/img/noise.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;      /* картинка покрывает весь экран */
  background-attachment: fixed;
}

  /* Принудительно показать скроллбар на macOS */
    .scrollbar-none {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    .scrollbar-none::-webkit-scrollbar {
      display: none;
    }
    .dropdown-menu {
      scrollbar-width: auto; /* Firefox */
      -ms-overflow-style: scrollbar; /* IE 10+ */
    }

    /* Chrome, Safari, Edge */
    .dropdown-menu::-webkit-scrollbar {
      width: 2px;
      height: 4px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb {
      background-color: white;
      border-radius: 9999px;
    }

    .dropdown-menu::-webkit-scrollbar-track {
      background: transparent;
    }

  .star {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: white;
    border-radius: 50%;
  }

  .star-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;  /* IE и Edge */
    scrollbar-width: none;     /* Firefox */
  }
  .scrollbar-hide::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
  }

  .tab-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    cursor: pointer;
    background-color: #2C2C2C;
    color: white;
    box-shadow: none;
    border: 1px solid transparent;
    white-space: nowrap;
}

.tab-btn.is-active {
    background-color: #00b488;
    color: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.tab-btn:not(.is-active):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    filter: brightness(1.08);
}

.tab-btn.is-active:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.tab-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.tab-btn.is-active:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

/* Firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #06AB6B transparent; /* ползунок / фон */
}

/* WebKit (Chrome, Edge, Safari) */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px; /* горизонтальный */
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #06AB6B;  /* цвет ползунка */
  border-radius: 9999px;
}

/* чтобы принудительно был скролл, даже если контент влезает */
.custom-scrollbar {
  overflow-y: scroll;
}
