/* style.css */
body {
    font-family: Arial, sans-serif;
}
.navbar {
    background-color: #007bff;
}
.navbar a {
    color: white !important;
}
/* Make dropdown background same as navbar */
.navbar .dropdown-menu {
    background-color: inherit !important;   /* Same color as navbar */
    border: none;                           /* Optional: remove border */
}

/* Dropdown items text color */
.navbar .dropdown-item {
    color: #000 !important;                 /* White text */
    background-color: #007bff !important; 
}

/* Hover effect */
.navbar .dropdown-item:hover {
    background-color: #007bff !important; 
    color: #fff !important;
}


.footer {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

