:root {
  --tab-bg: #ffffff;
  --tab-active-bg: #febd17;
  --tab-hover-bg: #6b6b6b;
  --border-color: #ddd;
  --transition-duration: 0.3s;
  --sticky-offset: 48px;
  --tab-button-padding: 20px 20px;
  --large-tab-height: 1800px;
  --bottom-margin: 120px;
  --tab-active-panel: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.tabs {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
}

.tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
  background-color: var(--tab-bg);
  width: 100%;
  position: sticky;
  top: var(--sticky-offset);
  z-index: 999;
  transition: all var(--transition-duration) ease;
}

.tab-buttons.sticky {
  top: var(--sticky-offset);
}

.tab-button, .arrow {
  flex: 1;
  padding: var(--tab-button-padding);
  cursor: pointer;
  background-color: var(--tab-bg);
  /* border: 1px solid black; */
  outline: none;
  transition: background-color var(--transition-duration) ease;
  color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  marin: 10px;
  margin: 10px;
}

.tab-button:hover,
.arrow:hover {
  background-color: var(--tab-hover-bg);
}

.tab-button.active {
  background-color: var(--tab-active-bg);
  border-bottom: 2px solid var(--tab-active-bg);
  
  border: 0px solid black;
}

.arrow {
  flex: 0;
  width: 40px;
  text-align: center;
}

.tab-content {
  padding: 0px;
  background-color: var(--tab-active-panel);
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

@media (max-width: 768px) {


  .tab-buttons {
    /* padding: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 0px;

    width: 100%;
    position: static !important;
    top: var(--sticky-offset);
    z-index: 999;
    transition: all var(--transition-duration) ease;
    border-radius: 50px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1), 0 0px 0px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
  }


  .tab-buttons {
    flex-direction: column;
    width: 100%;
  }

  .arrow {
    display: none;
  }

  .tab-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    border-top: 1px solid var(--border-color);
  }

  .tab-content {
    padding: 0;
    border: none;
  }

  .tab {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--transition-duration) ease-out;
  }

  .tab.active {
    max-height: 100%;
    /* Large enough to fit the content */
  }

  .tab-button::after {
    content: '\002B';
    /* Plus sign */
    font-size: 1.2em;
  }

  .tab-button.active::after {
    content: '\2212';
    /* Minus sign */
  }

  .tab.active {
    order: 1;
  }
}