body, .navbar, .navbar-brand, .form-control, .selectpicker {
    background-color: black !important;
    color: white !important;
}

.navbar {
    border-bottom: 1px solid white; /* Example: Add a white border to navbar */
}

.navbar-brand img {
    filter: invert(1); /* Invert the colors of the image to make it white */
}

.footer-div {
    background-color: black;
    color: white;
    padding: 20px;
    border-top: 1px solid white; /* White line above the div */
    text-align: center;
}

/* Link styling */
.footer-div a {
    color: #b0b0b0; /* Muted color for links */
    text-decoration: underline;
}

/* Hover effect on links */
.footer-div a:hover {
    color: #e0e0e0; /* Slightly brighter color on hover */
}
