/**** Bell Icon Styling ****/

/* Notification Bell */
.notification-menu {
    position: relative;
}

.notification-link {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.notification-icon {
    font-size: 24px;
    color: #ff4d4d; /* Red bell */
    margin-right: 8px;
    transition: color 0.3s;
}

.notification-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff4d4d;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}