@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", sans-serif !important;
}

.navbar {
    background-color: #fff; /* Dark black background */
}
.navbar-brand img {
    height: 50px; 
}
.navbar-nav .nav-link {
    color: #000; /* White text */
}
.navbar-nav .nav-link:hover {
    color: #f8d210; /* Gold hover effect */
}
/* .dropdown-menu {
    background-color: #222; 
} */
.dropdown-menu .dropdown-item {
    color: #000; /* White text in dropdown */
}
.dropdown-menu .dropdown-item:hover {
    background-color: #f8d210; /* Slightly lighter hover effect */
}
.notification-icon {
    position: relative;
    font-size: 22px;
    color: #000;
    cursor: pointer;
}
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 50%;
}
/* Remove dropdown arrows */
.dropdown-toggle::after {
    display: none !important;
}