html,
body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif !important;
  font-size: 15.4px; /* 14px * 1.1 = 15.4px for ~110% text scaling */
  color: var(--grey-1);
}

main{
  height: calc(100vh - 28px - 56px);
  width: 100%;
  overflow: auto;
  padding: 10px;
  margin-top: 28px;
  margin-bottom: 56px;
  scrollbar-width: thin;
  /* VVVV MAY BE HAZARDOUS IF ANYTHING GOES WRONG DELETE THIS FIRST VVVV */
  overflow-x: hidden;
  
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem var(--text-white), 0 0 0 0.25rem var(--oe-secondary);
}

html {
  position: relative;
  min-height: 100%;
}

/* Reset to normal size on narrow screens */
@media (max-width: 750px) {
  html {
    font-size: 14px;
  }
}

.title {
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 1200px) {
.title {
  font-size: 2rem;
}
}

.solid {
  border-top: 2px solid var(--grey-1);
  border-bottom: none;
  margin: 0 0 10px 0;
}

/* Tour modal styles */
.tour-container {
  position: relative;
  color: var(--text-2);
}

.tour-page {
  transition: opacity 0.3s ease;
}

.tour-image {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tour-pagination {
  margin: 15px 0;
}

.tour-page-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--grey-2);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.tour-page-dot.active {
  background-color: var(--oe-primary);
  transform: scale(1.2);
}

.tour-page-dot:hover {
  background-color: var(--grey-1);
}

.modal-footer{
  border:none;
}

[data-dark-mode="enabled"] .modal-title{
  color: var(--text-1);
}

[data-dark-mode="enabled"] .text-muted{
  color: var(--text-2) !important;
}

/* Smooth transitions for dark mode changes */
body, main, .header, .navbar, .profile-section, .modal-content {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Dark Mode Tour Container */
[data-dark-mode="enabled"] .tour-container {
  color: var(--text-2);
}



