/* Optyx Documentation Styles */
/* Minimal customization - relying on standard Quarto/Cosmo theme for responsiveness */

/* Hide the auto-generated title block on the landing page — the hero section is the visual title */
.quarto-title-block {
    display: none;
}

/* Custom footer page-nav buttons */
.page-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.page-nav-buttons .btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
/* Custom Navbar Centering */
@media (min-width: 992px) {
    /* Center the container content: Brand + Collapse */
    .navbar .container-fluid {
        justify-content: center;
    }

    /* Stop the collapse from growing and pushing items apart */
    .navbar-collapse {
        flex-grow: 0;
        justify-content: flex-start; /* Reset from potential defaults */
    }

    /* Reset margin autos which push content apart */
    .navbar-nav {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Remove Quarto specific spacers if they exist */
    .navbar-nav.me-auto {
        margin-right: 0 !important;
    }
    .navbar-nav.ms-auto {
        margin-left: 0 !important;
    }
}
