.sc-container {
  height: 100vh;
  overflow-y: hidden;
}

.sc-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#tutorial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

#tutorial-welcome {
  position: absolute;
  top: 32px;
  left: 40px;
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.5px;
  max-width: 90%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
#tutorial-welcome .tutorial-welcome-brand {
  display: block;
  margin-top: 14px;
  height: 128px;
  width: auto;
  max-width: none;
}
#tutorial-overlay.tutorial-active {
  display: flex;
  opacity: 1;
}

#tutorial-start-btn {
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #12203a;
  background: #197dcf;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}
#tutorial-start-btn:hover {
  transform: scale(1.05);
  background: #f0f2f4;
}

body.tutorial-on .rs-navRoom,
body.tutorial-on .rs-navRoomRemove,
body.tutorial-on .menu-budget-btn,
body.tutorial-on .viewBtn,
body.tutorial-on [data-action="fullscreen"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

body.tutorial-on .rs-panel.rs-open {
  cursor: not-allowed;
}
body.tutorial-on .rs-panel.rs-open * {
  pointer-events: none;
}

body.tutorial-on .rs-panel {
  transition: none !important;
}

#tutorial-labels {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.tutorial-label {
  position: absolute;
  transform: translateY(-50%);
  max-width: 450px;
  padding: 8px 14px;
  background: #fff;
  color: #12203a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  white-space: normal;
  text-align: right;
}

.tutorial-label::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.tutorial-label::after {
  content: '';
  position: absolute;
  left: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: #fff;
}


.tutorial-label--panel {
  max-width: 320px;
}

.tutorial-label--hint {
  transform: translateX(-50%);
  text-align: center;
}
.tutorial-label--hint::before { display: none; }
.tutorial-label--hint::after {
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
  border-left-color: transparent;
}
