/* Base styles */
.wizard-container {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;

  .wizard-header {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem;
      backdrop-filter: blur(80px);

      .back-button {
          position: absolute;
          left: 0.5rem;
          background: none;
          border: none;
          cursor: pointer;
          display: flex;
          align-items: center;
          color: var(--shade800);
          font-size: 1rem;
          padding: 0.5rem;
          width: auto;

          .button-icon {
              margin-right: 0.5rem;
          }
      }

      #wizardStepTitle {
          font-size: 1rem;
          font-weight: 600;
          text-align: center;
          color: var(--shade800);
      }
  }

  .wizard-slides-container {
      overflow: auto;
      padding: 1rem 2rem;
      height: 100%;
      padding: 2rem 2rem;
      padding-top: 0.5rem;

      .wizard-slide {
          display: flex;
          flex-direction: column;
          gap: 1rem;
      }

      .wizard-step-container {
          display: flex;
          flex-direction: column;
          gap: 1rem;
      }

      @media (min-width: 768px) {
          .wizard-step-container {
              display: grid;
              grid-template-columns: 1fr 2fr;
              gap: 1rem;
          }

          .left-column {
              display: flex;
              flex-direction: column;
              gap: 1rem;
          }

          .right-column {
              display: flex;
              flex-direction: column;
              gap: 0.5rem;
          }
      }
  }

  .wizard-dots {
      width: 100%;
      height: 0.5rem;
      display: flex;
      gap: 0.25rem;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-evenly;
      margin-bottom: 1rem;

      .wizard-dot {
          background-color: var(--shade200);
          height: 0.5rem;
          min-width: 0.5rem;
          width: 100%;
          border-radius: 1rem;
          display: block;

          &.active {
              background-color: var(--shade600);
          }
      }
  }
}

.wizard-nav {
  position: sticky;
  left: 0;
  bottom: 0;
  padding: 1rem;
  padding-bottom: 1.5rem;
  background-color: var(--background-card);
  box-sizing: border-box;
  width: 100%;
  z-index: 400;
  display: flex;
  gap: 1rem;
  box-shadow: var(--box-shadow-bottonBar);

  &.secondary-nav {
      position: relative;
      padding: 1rem;
      box-shadow: var(--box-shadow-bottonBar);
  }
}
