
body {
    font-family: Roboto;
    color: black;
    padding-top: 110px;
    margin: 0px;
}


/* GENERAL */
.no-underline {
    text-decoration: none;
}
  
#anchor {
    scroll-margin-top: 100px;
}

.bold {
    font-weight: bold;
}

.pointer {
    cursor: pointer;
}

.clickable-row {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute; /* Ensure it doesn't push content */
    top: 100%; /* Position directly below the button */
    right: 0; /* Align it to the right edge of the dropdown trigger */
    z-index: 1050; /* Higher than the navbar */
}


/* MAIN NAVBAR */
#main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1005;
}

.navbar-nav .nav-item {
    padding-left: 7px;
    padding-right: 7px;
}

/*SMALLER SCREENS!*/
@media only screen and (max-width: 540px) {
    #bo-name {
        display: none;
    }
}


/* FORMS */
/* Hide the asterisk for labels that are not associated with required fields */
.form-group input[required] + label::after {
    content: "*";
    color: red;
    font-weight: bold;
    margin-left: 4px;
}

.form-floating label::after {
    content: "";
}

.form-floating input[required] + label::after {
    content: "*";
    color: red;
    font-weight: bold;
    margin-left: 4px;
}