.chevron-spin {
    transition: transform 0.2s ease;
}

    .chevron-spin.rotate {
        transform: rotate(180deg);
    }

.notif-dropdown {
    width: 380px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    padding: 0 !important;
}

.notif-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 12px 14px;
}

.notif-title {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.notif-list {
    max-height: 420px;
    overflow-y: auto;
    padding: 8px;
    background: #fafafa;
}

    /* Scrollbar */
    .notif-list::-webkit-scrollbar {
        width: 7px;
    }

    .notif-list::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.15);
        border-radius: 999px;
    }

    .notif-list::-webkit-scrollbar-track {
        background: transparent;
    }

.notif-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    border: 1px solid transparent;
}

    .notif-item:hover {
        transform: translateY(-1px);
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.06);
    }

    .notif-item.unread {
        background: #eef6ff;
        border: 1px solid #cfe6ff;
    }

.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,0.12);
    color: #0d6efd;
    flex-shrink: 0;
}

.notif-item.read .notif-icon {
    background: rgba(108,117,125,0.12);
    color: #6c757d;
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-time {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 4px;
}

.notif-pill {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    height: fit-content;
}

.notif-footer {
    background: #ffffff;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
