
.gem-bell-wrapper {
    position: relative;
    display: inline-block;
}
.gem-bell-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gem-bell-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 50%;
}
.gem-bell-icon img.gem-bell-img {
    width: 26px;
    height: 26px;
    filter: brightness(0) saturate(100%); /* يخليها سوداء وواضحة */
    transition: 0.2s ease-in-out;
}
.gem-bell-icon:hover img.gem-bell-img {
    transform: scale(1.1);
    filter: invert(81%) sepia(9%) saturate(969%) hue-rotate(306deg) brightness(94%) contrast(89%);
}
.gem-bell-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    width: 250px;
    z-index: 100;
    margin-top: 10px;
}
.gem-bell-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 10px;
}
.gem-bell-dropdown ul li {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.gem-bell-dropdown ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
	font-weight: bold;
	padding-left:10px;
	padding-right:10px;

}
.gem-bell-dropdown ul li:last-child {
    border-bottom: none;
}
.gem-view-all {
    display: block;
    text-align: center;
    padding: 50px
    font-size: 40px;
    color: #0073aa;
    border-top: 1px solid #eee;
    text-decoration: none;
}
.gem-view-all:hover {
    background: #f9f9f9;
}
.gem-bell-wrapper.active .gem-bell-dropdown {
    display: block;
}
.gem-notification-item{
	padding: 20px;
	margin: 30px;
	width: 100%;
 	border-radius: 25px;
 	background: #F8D8DD;
 	box-shadow: 20px 20px 60px #d3d3d3,
               -20px -20px 60px #ffffff;
}
