.notif-dropdown {
    min-width: 320px;
    max-width: 400px;
    max-height: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    padding: 0;
    border: none
}

.notif-list-container {
    max-height: 380px;
    overflow-y: auto;
    overflow-x: hidden
}

.notif-list-container::-webkit-scrollbar {
    width: 6px
}

.notif-list-container::-webkit-scrollbar-track {
    background: #f1f1f1
}

.notif-list-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px
}

.notif-list-container::-webkit-scrollbar-thumb:hover {
    background: #999
}

.notif-item {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f0f0f0;
    transition: all .2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal
}

.notif-item:last-child {
    border-bottom: none
}

.notif-item:hover {
    background-color: #f8f9fa
}

.notif-title {
    font-weight: 600;
    color: #193e6b;
    font-size: 13px;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word
}

.notif-desc {
    color: #666;
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.notif-time {
    font-size: 11px;
    color: #999
}

.notif-header {
    padding: 12px 16px;
    font-weight: 600;
    color: #193e6b;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    margin: 0;
    display: flex;
    align-items: center;
    white-space: nowrap
}

.notif-footer {
    padding: 0;
    background: #f8f9fa;
    margin: 0
}

.notif-footer a {
    padding: 8px 16px !important;
    white-space: nowrap
}

@media(max-width:768px) {
    .notif-dropdown {
        min-width: 280px;
        max-width: 320px
    }

    .notif-list-container {
        max-height: 340px
    }

    .notif-item {
        padding: 10px 12px !important;
        font-size: 12px
    }

    .notif-title {
        font-size: 12px
    }

    .notif-desc {
        font-size: 11px;
        -webkit-line-clamp: 2
    }
}

@media(max-width:576px) {
    .notif-dropdown {
        min-width: 260px;
        max-width: 300px
    }

    .notif-list-container {
        max-height: 320px
    }

    .notif-header {
        padding: 10px 12px;
        font-size: 13px
    }

    .notif-item {
        padding: 8px 12px !important
    }

    .notif-title {
        font-size: 11px;
        margin-bottom: 2px
    }

    .notif-desc {
        font-size: 10px;
        margin-bottom: 4px;
        -webkit-line-clamp: 2
    }

    .notif-time {
        font-size: 10px
    }
}