   #searchResults .list-group-item {
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

#searchResults .list-group-item:hover {
    background-color: #f8f9fa;
}

#searchResults a {
    text-decoration: none !important;
    color: #212529;
    font-weight: 500;
}

/* In the style tag in header.php, add these rules */
.navbar-nav .nav-link {
    color: #000000 !important; /* Black color for nav links */
}

/* For the active/hover states */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #000000 !important;
    opacity: 0.8;
}

/* FORCE BLACK TEXT */
.menu_one.menu_purple .nav-link,
.navbar .nav-link,
.nav-item .nav-link {
    color: #000 !important;
}

/* Fix active state also */
.menu_one.menu_purple .nav-item.active > .nav-link {
    color: #000 !important;
}
	
	/* For login/signup buttons */
.nav_btn.tp_btn.oval-btn {
    background-color: #0d6efd !important; /* Bootstrap primary blue */
    color: white !important;
    border: none;
    padding: 8px 20px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

/* Hover effect */
.nav_btn.tp_btn.oval-btn:hover {
    background-color: #0b5ed7 !important; /* Slightly darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
	
	/* Force black color for navigation links */
.navbar-nav .nav-link {
    color: #000000 !important;
}

/* Ensure hover and active states are also black */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #000000 !important;
    opacity: 0.8;
}

/* Override any other conflicting styles */
.menu_one .navbar-nav .nav-link {
    color: #000000 !important;
}
	
	
    /* Force black text for navigation links */
    .menu_one .navbar-nav .nav-link,
    .menu_one .navbar-nav .nav-link:hover,
    .menu_one .navbar-nav .nav-link:focus,
    .menu_one .navbar-nav .nav-link.active {
        color: #000000 !important;
        opacity: 1 !important;
        text-decoration: none !important;
    }

    /* Override any background colors that might be affecting visibility */
    .menu_one {
        background-color: #ffffff !important;
    }

    /* Ensure the navbar is white */
    .navbar {
        background-color: #ffffff !important;
    }

    /* Make sure the text is visible on all screen sizes */
    @media (max-width: 991px) {
        .navbar-collapse {
            background-color: #ffffff !important;
        }
        .navbar-nav .nav-link {
            color: #000000 !important;
        }
    }
	
	.user-menu-container {
    position: relative;
    display: inline-block;
}

/* Round user icon */
.user-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2611da;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.user-circle i {
    font-size: 18px;
}

/* Card */
.user-card {
    position: absolute;
    top: 55px;
    right: 0;
    width: 180px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 12px;
    display: none;
    z-index: 9999;
}

.user-name {
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

/* Links inside card */
.card-link {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #222;
    border-radius: 6px;
    transition: 0.2s;
}

.card-link i {
    margin-right: 6px;
}

.card-link:hover {
    background: #f1f1f1;
}

.logout-link {
    color: red;
}
