/* Notication css */
.navbar-nav .notification {
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
    position: absolute;
    top: 8px;
    right: 10px;
}

.notif-box {
    min-width: 300px;
    max-width: 400px;    
}

.notif-box .dropdown-title {
    font-weight: bold;
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.notif-scroll {
    max-height: 250px;
    overflow-y: auto;
}

.notif-center a {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    align-items: center;
}

.notif-center a:hover {
    background-color: #f1f1f1;
}

.notif-icon {
    margin-right: 10px;
    font-size: 20px;
}

.notif-img img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.custom-noti-dropdown {
    transform: translateX(-100px) !important; /* Shift to the left */
}

/* On mobile, shift it slightly to the right */
@media (max-width: 576px) {
    .custom-noti-dropdown {
        transform: translateX(0px) !important; /* Adjust this value as needed */
    }
}

.fa-bell {
            color: #672f0a!important;
        }
        .fa-bell:hover {
            text-shadow: 0 2px 4px rgba(0, 0, 0 , 0.5);
        }