body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body > main {
    flex: 1;    
    padding: 3rem 0 3rem 0;
}

.module-card:hover {
    border: 1px dashed;
}

:root {
    --bs-primary: #0278A5;
    --bs-primary-rgb: 0, 120, 165;
}

.navbar-brand {
    width: 150px;
}

@media only screen and (max-width: 768px) {
    .navbar-brand {
        width: 100px;
    }
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-scroller {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-scroller::-webkit-scrollbar {
    display: none;
}

.nav-scroller .nav-link,
.nav-scroller .dropdown-item {
    font-size: 0.75rem;
}

body {
    background-image: url("/assets/imgs/bg-wave.png");
    background-size: 100% 50%;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.module-card {
    padding: 1rem;
    border-radius: 5px;
    border: 1px dashed transparent;
}

.module-cards {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .module-cards {
        grid-template-columns: 1fr;
    }
}

span.form-label {
    display: block;
}

.form-check span.form-label {
    display: inline-block;
}

table.radio-button-list tbody tr td:not(:last-child),
table.checkbox-list tbody tr td:not(:last-child) {
    padding-right: 12px;
}

table.radio-button-list tbody tr td input,
table.checkbox-list tbody tr td input {
    margin-right: 5px;
}

.tree-view a {
    margin-left: 7.5px;
}

.x {
    border: 1px solid red;
}

.h-full {
    height: 100%;
}

#map > #loader {
    background: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info {
    padding: 6px 8px;
    font: 14px / 16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.legend {
    text-align: left;
    line-height: 18px;
    color: #555;
}

.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}

.disabled {
    user-select: none;
    pointer-events: none;
}
