
.notif-icon-container {
    position: relative;
    display: inline-block;
}

.notif-icon-circle {
    width: 41px;
    height: 41px;
    background: white;
    border: 1px solid #7f7397;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notif-icon-circle img {
    width: 22px;
    height: 22px;
    filter: invert(56%) sepia(5%) saturate(320%) hue-rotate(190deg) brightness(90%) contrast(85%);
}

.notif-icon-circle:hover,
.notif-icon-circle:active {
    background: #263D93;
    border-color: #263D93;
}

.notif-icon-circle:hover img,
.notif-icon-circle:active img {
    filter: invert(1);
}

.notif-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #DC3545;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
}

.notif-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    width: 400px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

@media (max-width: 450px) {
    .notif-dropdown {
        width: 90vw;
        right: 5px;
    }
}

.notif-dropdown li {
    list-style: none;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.notif-dropdown li:last-child {
    border-bottom: none;
}

.notif-item {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 14px;
}

.notif-item:hover {
    background-color: #f8f9fa;
    padding-left: 5px;
    transition: 0.2s;
}
