a {
    text-decoration: none;
    color: blue;
}

#navbar {
    background-color: white;
}

.nav-link {
    color: #1abc9c;
    border-radius: 10px;
    min-width: fit-content;
}

.nav-link:hover {
    color: white;
    background-color: #1abc9c;
}

.navbar-toggler {
    border: #1abc9c solid 2px;
}

#logo {
    border-radius: 10px;
}

body {
    padding-top: 100px;
    overflow-x: hidden;
}

.splitter {
    background-color: #1abc9c;
    min-height: fit-content;
}

footer {
    background-color: #0f6553;
    min-height: fit-content;
}

footer .nav-link {
    color: white;
    background-color: #0f6553;
}

footer .nav-link:hover {
    color: #1abc9c;
    background-color: white;
}

.text-teal {
    color: #1abc9c;
}

.bg-teal {
    background-color: #1abc9c;
}

.btn-teal {
    background-color: #1abc9c;
    color: white;
}

.btn-teal:hover {
    background-color: #149178;
    color: white;
}

.btn-teal:active {
    background-color: #21e8c0;
    color: white;
}

.btn-white {
    background-color: white;
    color: #1abc9c;
}

.btn-white:hover {
    background-color: rgb(245, 245, 245);
    color: #1abc9c;
}

.border-teal {
    border-color: #1abc9c;
}

label:has(+ :required)::after {
    content: " *";
    color: red;
}

.icon-x::before {
    content: "\00D7";
    color: red;
    font-size: 2rem;
    font-weight: bold;
}

.icon-check::before {
    content: "\2713";
    color: rgb(0,200,0);
    font-size: 2rem;
    font-weight: bold;
}