/* Reset and base styles */

/* Accordion Container */
.accordion {
  /* background: white; */
  overflow: hidden;
  /* border-top: 1px solid black; */
  /* padding-bottom: 20px; */
}

/* Accordion Item */

/* .accordion-item:last-child {
            border-bottom: none;
        } */

/* Accordion Header */
.accordion-header {
  /* scroll-margin-top: 20px; */
  padding: 0.6rem 0px /*1.5rem*/;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  /* color: #1a1a1a; */
  /* transition: background-color 0.2s ease; */
  transition: margin-top 0.3s ease;
}

/* Header text */
.accordion-title {
  font-weight: 700;
  line-height: 95%;
}

.betaTest{
  font-weight: 100;
}

.accordion-header:hover {
  /* background-color: #f9f9f9; */
  color: #818181;
}

/* Custom Icon Container */
.accordion-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Icon images - replace with your actual icons */
.accordion-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Default closed state icon */
.accordion-icon .icon-open {
  display: none;
}

.accordion-icon .icon-closed {
  display: block;
}

/* Open state icon */
.accordion-item.active .accordion-icon .icon-open {
  display: block;
}

.accordion-item.active .accordion-icon .icon-closed {
  display: none;
}

/* Accordion Content */
.accordion-content {
  overflow: hidden;
  transition: height 0.3s ease;
  max-height: 0;
  font-weight: 300;
  transition: max-height 0.5s ease;
  /* background-color: #fafafa; */
}

.hLine {
  border: none;
  border-top: 1px dashed #4a4a4a;
  margin: 0 0 1rem 0;
}

.accordion-content p {
  padding-bottom: 15px;
}

.accordion-content b {
  font-weight: 700;
}

.accordion-content-inner {
  padding: 1.5rem 0px 0px 0px;
  line-height: 1.3;
}

.accordion-content-inner i {
  font-weight: 400;
}

.accordion-content-inner ul {
  margin: 0;
  padding: 0 0 10px 0;
  list-style: none;
}

.accordion-content-inner li::before {
  content: "—";
  position: absolute;
  left: 0;
  margin-right: 10px;
}

.accordion-content-inner li {
  line-height: 1;
  margin: 0.5rem 0;
  position: relative;
  padding-left: 30px;
}

.listRaw li {
  padding-bottom: 5px;
  line-height: 120%;
}
.bottom-padding {
  padding-bottom: 3rem;
}

/* Loading state */
.loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}

/* Error state */
.error {
  text-align: center;
  padding: 2rem;
  color: #d32f2f;
  background: #ffebee;
}

/* .UI-Container{
    padding: 20px;
    text-align: center;
    background: url('../images/dotBkg.png') repeat; background-size: 10px 10px;
} */

.UI-Container {
  position: relative;
  padding: 20px;
  margin-top: 10px;
  text-align: center;
  z-index: 0; /* establishes stacking context */
}

.UI-ImgeNoBottomPadding {
  padding-bottom: 0px;
}

.UI-ImgeNoTopMargin {
  margin-top: 0px;
  padding-top: 0px;
}

.UI-Container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/dotBkg.png") repeat;
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: -1; /* 👈 put it BEHIND content */
}

.UI-ContainerMenu {
  display: flex;
  justify-content: center;
  /* background-color: #ffffff; */
  padding: 0;
  margin: 0;
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  /* text-align: center; */
}

.UI-Container img,
.UI-ContainerMenu img {
  width: 100%;
  max-width: 700px;
  height: auto;
  z-index: 1;
}

.slider {
  display: grid;
  max-width: 700px;
  margin: 0 auto;
}

.slider img {
  grid-area: 1 / 1;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

.accordion-inner {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* when open */
.accordion-item.active .accordion-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

  .darkMode{
    display: none;
  }

/* ------------------------------------------------------------ */
/* light mode */
/* ------------------------------------------------------------ */
@media (prefers-color-scheme: light) {
  .accordion {
    border-top: 1px solid black;
  }

  .accordion-item {
    border-bottom: 1px solid #000000;
  }


}

/* ------------------------------------------------------------ */
/* dark mode */
/* ------------------------------------------------------------ */
@media (prefers-color-scheme: dark) {
  .accordion {
    border-top: 1px solid rgb(193, 193, 193);
  }

  .accordion-item {
    border-bottom: 1px solid rgb(193, 193, 193);
  }

    .UI-Container::before {
        background: url("../images/dotBkg_dark.png") repeat;
      opacity: 0.2;
  }

  .lightMode{
    display: none;
  }

  .darkMode{
    display: block;
  }

  .UI-ContainerMenu {
  border-top: 1px solid #5b5b5b;
  border-bottom: 1px solid #5b5b5b;
}

}
