/* css styles */



/* Hovered link */
a:hover {
    color: green; /* Set the color you prefer */
}

/* Active link */
a:active {
    color: red; /* Set the color you prefer */
}


.red {color: red;}
.green {color: green;}
.blue {color: blue;}

/* CSS for a fixed/sticky navbar */
nav.quarto-navbar {
    position: fixed;     /* Makes the navbar fixed at the top */
    top: 0;              /* Aligns the navbar to the top of the page */
    width: 100%;         /* Ensures the navbar spans the full width */
    z-index: 1000;       /* Ensures the navbar is above other elements */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
}

/* Adjust the main content to avoid overlapping */
body {
    padding-top: 70px;  /* Adjust based on the navbar height */
}