html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    padding-top: 90px;
    margin-bottom: 60px;
}

hr {
  background-color: #e30040;
}

.nav-link.active {
    text-decoration: underline;
}

.table {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    border-collapse: separate;
}

.table-header {
    background-color: #e30040;
    color: white;
}

.table-marked {
    background-color: dimgray;
    color: white;
}

.menu-sticky-header {
    background-color: white;
    position: fixed;
    top: 90px;
    z-index: 1000;
}

.table-sticky-header {
    position: sticky;
    position: -webkit-sticky;
    transition: 0.4s ease-out;
}

/* pin-settings for page header */
.pin {
    font-size: 2em;
    cursor: pointer;
    color: #e30040;
    transition: transform 1s ease-out;
}

.sortcol {
    cursor: pointer;
}

.modal-header {
    border-bottom-color: #e30040;
}

.modal-footer {
    border-top-color: #e30040;
}

/* Remove default bullets */
ul, #myUL {
    list-style-type: none;
}

/* Remove margins and padding from the parent ul */
#myUL {
    margin: 0;
    padding: 0;
}

/*checkboxes & radiobuttons*/
input[type="radio"] {
    accent-color: #e30040;
}

input[type="checkbox"] {
    accent-color: #e30040;
}

.form-check-input:checked {
    background-color: #e30040; /* Change the color of the toggle when it is checked */
    border-color: #e30040; /* Change the border color of the toggle when it is checked */
}

/* Style the caret/arrow */
.caret {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
}

    /* Create the caret/arrow with a unicode, and style it */
    .caret::before {
        content: "\27A4";
        color: firebrick;
        display: inline-block;
    }

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
    transform: rotate(90deg);
}


/* Hide the nested list */
.nested {
    display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
    display: block;
}

/* Paging */
.pagination {
    cursor: pointer;
    display: inline-block;
}

    .pagination a {
        color: black;
        float: left;
        transition: background-color .5s;
        border: 1px solid gray;
        border-radius: 6px;
        font-size: 15px;
        width: 50px;
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px;
        background-color: white;
        text-decoration: none;
    }

        .pagination a.active {
            background-color: #e30040;
            color: white;
            border: 1px solid #e30040;
            font-weight: bold;
        }

        .pagination a:hover:not(.active) {
            background-color: #ddd;
        }
