:root {
  --brand: #005eb8;
  --text: #333;
  --light: #f6fafd;
}

body,
html {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: white;
  overflow: hidden;
}

#onboarding-container {
  width: 100%;
  height: 100vh;
  position: relative;
  background: var(--light);
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  padding: 40px 20px;
}

.slide img {
  width: 60%;
  max-width: 260px;
  margin-top: 40px;
}

.slide h2 {
  color: var(--brand);
  margin-top: 30px;
  font-size: 24px;
}

.slide p {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.pagination {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.pagination span {
  width: 10px;
  height: 10px;
  background: #c9d6e6;
  border-radius: 50%;
  transition: 0.3s;
}

.pagination span.active {
  width: 20px;
  border-radius: 20px;
  background: var(--brand);
}

.bottom-nav {
  position: absolute;
  bottom: 75px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

#nextBtn,
#skipBtn {
  background: var(--brand);
  border: none;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 16px;
}

#skipBtn {
  background: transparent;
  color: var(--brand);
}

.permission-btn {
  background: var(--brand);
  border: none;
  margin-top: 12px;
  padding: 12px 20px;
  color: white;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
}
