body {
    font-family: "Inter", sans-serif;
    margin: 0;
    overflow: hidden; /* Prevent scrolling if views are perfectly full screen */
}
.page-view {
    width: 100vw;
    height: 100vh;
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    position: absolute; /* Position views on top of each other */
    top: 0;
    left: 0;
}
.page-view.active {
    display: flex; /* Show active view */
    opacity: 1;
}
.nav-buttons {
    position: fixed;
    bottom: 1.5rem; /* Equivalent to Bootstrap's pb-6 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 1rem; /* Space between buttons */
}
/* Custom styles for rounded corners and focus states */
.btn-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.5); /* Tailwind slate-500 equivalent */
}
